diff --git a/awx/ui/src/components/AdHocCommands/AdHocCommands.js b/awx/ui/src/components/AdHocCommands/AdHocCommands.js
index 6ace0d9ad6..6036053e07 100644
--- a/awx/ui/src/components/AdHocCommands/AdHocCommands.js
+++ b/awx/ui/src/components/AdHocCommands/AdHocCommands.js
@@ -14,8 +14,6 @@ import ErrorDetail from '../ErrorDetail';
import AdHocCommandsWizard from './AdHocCommandsWizard';
import ContentError from '../ContentError';
-import { VERBOSE_OPTIONS } from '../../constants';
-
function AdHocCommands({
adHocItems,
hasListItems,
@@ -154,7 +152,6 @@ function AdHocCommands({
adHocItems={adHocItems}
organizationId={organizationId}
moduleOptions={moduleOptions}
- verbosityOptions={VERBOSE_OPTIONS}
credentialTypeId={credentialTypeId}
onCloseWizard={() => setIsWizardOpen(false)}
onLaunch={handleSubmit}
diff --git a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js
index c86890502c..6f10607e54 100644
--- a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js
+++ b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js
@@ -3,13 +3,13 @@ import { t } from '@lingui/macro';
import { withFormik, useFormikContext } from 'formik';
import PropTypes from 'prop-types';
+import { VERBOSITY } from 'components/VerbositySelectField';
import Wizard from '../Wizard';
import useAdHocLaunchSteps from './useAdHocLaunchSteps';
function AdHocCommandsWizard({
onLaunch,
moduleOptions,
- verbosityOptions,
onCloseWizard,
credentialTypeId,
organizationId,
@@ -18,7 +18,6 @@ function AdHocCommandsWizard({
const { steps, validateStep, visitStep, visitAllSteps } = useAdHocLaunchSteps(
moduleOptions,
- verbosityOptions,
organizationId,
credentialTypeId
);
@@ -57,13 +56,13 @@ function AdHocCommandsWizard({
}
const FormikApp = withFormik({
- mapPropsToValues({ adHocItems, verbosityOptions }) {
+ mapPropsToValues({ adHocItems }) {
const adHocItemStrings = adHocItems.map((item) => item.name).join(', ');
return {
limit: adHocItemStrings || 'all',
credentials: [],
module_args: '',
- verbosity: verbosityOptions[0].value,
+ verbosity: VERBOSITY()[0],
forks: 0,
diff_mode: false,
become_enabled: '',
@@ -79,7 +78,7 @@ const FormikApp = withFormik({
FormikApp.propTypes = {
onLaunch: PropTypes.func.isRequired,
moduleOptions: PropTypes.arrayOf(PropTypes.array).isRequired,
- verbosityOptions: PropTypes.arrayOf(PropTypes.object).isRequired,
+ // verbosityOptions: PropTypes.arrayOf(PropTypes.object).isRequired,
onCloseWizard: PropTypes.func.isRequired,
credentialTypeId: PropTypes.number.isRequired,
};
diff --git a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.test.js b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.test.js
index 95782c1373..83d7e38bfc 100644
--- a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.test.js
+++ b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.test.js
@@ -6,7 +6,6 @@ import {
waitForElement,
} from '../../../testUtils/enzymeHelpers';
import AdHocCommandsWizard from './AdHocCommandsWizard';
-import { VERBOSE_OPTIONS } from '../../constants';
jest.mock('../../api/models/CredentialTypes');
jest.mock('../../api/models/Inventories');
@@ -38,7 +37,6 @@ describe('', () => {
adHocItems={adHocItems}
onLaunch={onLaunch}
moduleOptions={moduleOptions}
- verbosityOptions={VERBOSE_OPTIONS}
onCloseWizard={() => {}}
credentialTypeId={1}
organizationId={1}
diff --git a/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js b/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js
index d226b240ca..cd2104b71b 100644
--- a/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js
+++ b/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js
@@ -7,6 +7,7 @@ import { Form, FormGroup, Switch, Checkbox } from '@patternfly/react-core';
import styled from 'styled-components';
import { required } from 'util/validators';
import useBrandName from 'hooks/useBrandName';
+import { VerbositySelectField } from 'components/VerbositySelectField';
import AnsibleSelect from '../AnsibleSelect';
import FormField from '../FormField';
import { VariablesField } from '../CodeEditor';
@@ -21,7 +22,7 @@ const TooltipWrapper = styled.div`
text-align: left;
`;
-function AdHocDetailsStep({ verbosityOptions, moduleOptions }) {
+function AdHocDetailsStep({ moduleOptions }) {
const brandName = useBrandName();
const [moduleNameField, moduleNameMeta, moduleNameHelpers] = useField({
name: 'module_name',
@@ -32,7 +33,7 @@ function AdHocDetailsStep({ verbosityOptions, moduleOptions }) {
const [diffModeField, , diffModeHelpers] = useField('diff_mode');
const [becomeEnabledField, , becomeEnabledHelpers] =
useField('become_enabled');
- const [verbosityField, verbosityMeta, verbosityHelpers] = useField({
+ const [, verbosityMeta] = useField({
name: 'verbosity',
validate: required(null),
});
@@ -122,33 +123,16 @@ function AdHocDetailsStep({ verbosityOptions, moduleOptions }) {
)
}
/>
-
- }
- >
- {
- verbosityHelpers.setValue(parseInt(value, 10));
- }}
- />
-
+ />
)
@@ -57,6 +59,9 @@ function AdHocPreviewStep({ hasErrors, values }) {
value={execution_environment[0]?.name}
/>
)}
+ {verbosity && (
+
+ )}
{extra_vars && (
{
@@ -39,12 +35,7 @@ export default function useAdHocDetailsStep(
{t`Details`}
),
- component: (
-
- ),
+ component: ,
enableNext: true,
nextButtonText: t`Next`,
},
diff --git a/awx/ui/src/components/AdHocCommands/useAdHocLaunchSteps.js b/awx/ui/src/components/AdHocCommands/useAdHocLaunchSteps.js
index caf7a91462..038331e239 100644
--- a/awx/ui/src/components/AdHocCommands/useAdHocLaunchSteps.js
+++ b/awx/ui/src/components/AdHocCommands/useAdHocLaunchSteps.js
@@ -24,7 +24,6 @@ function showCredentialPasswordsStep(credential) {
export default function useAdHocLaunchSteps(
moduleOptions,
- verbosityOptions,
organizationId,
credentialTypeId
) {
@@ -32,7 +31,7 @@ export default function useAdHocLaunchSteps(
const [visited, setVisited] = useState({});
const steps = [
- useAdHocDetailsStep(visited, moduleOptions, verbosityOptions),
+ useAdHocDetailsStep(visited, moduleOptions),
useAdHocExecutionEnvironmentStep(organizationId),
useAdHocCredentialStep(visited, credentialTypeId),
useCredentialPasswordsStep(
diff --git a/awx/ui/src/components/AnsibleSelect/AnsibleSelect.js b/awx/ui/src/components/AnsibleSelect/AnsibleSelect.js
index 14e886c16b..ff1c8395ee 100644
--- a/awx/ui/src/components/AnsibleSelect/AnsibleSelect.js
+++ b/awx/ui/src/components/AnsibleSelect/AnsibleSelect.js
@@ -46,7 +46,9 @@ function AnsibleSelect({
value={option.value}
label={option.label}
isDisabled={option.isDisabled}
- />
+ >
+ {option.label}
+
))}
);
diff --git a/awx/ui/src/components/LaunchPrompt/steps/OtherPromptsStep.js b/awx/ui/src/components/LaunchPrompt/steps/OtherPromptsStep.js
index d50f454501..70e7664fe7 100644
--- a/awx/ui/src/components/LaunchPrompt/steps/OtherPromptsStep.js
+++ b/awx/ui/src/components/LaunchPrompt/steps/OtherPromptsStep.js
@@ -9,7 +9,7 @@ import { TagMultiSelect } from '../../MultiSelect';
import AnsibleSelect from '../../AnsibleSelect';
import { VariablesField } from '../../CodeEditor';
import Popover from '../../Popover';
-import { VERBOSE_OPTIONS } from '../../../constants';
+import { VerbositySelectField } from '../../VerbositySelectField';
const FieldHeader = styled.div`
display: flex;
@@ -130,28 +130,16 @@ function JobTypeField() {
}
function VerbosityField() {
- const [field, meta, helpers] = useField('verbosity');
+ const [, meta] = useField('verbosity');
const isValid = !(meta.touched && meta.error);
return (
-
- }
- >
- helpers.setValue(value)}
- />
-
+ isValid={isValid ? 'default' : 'error'}
+ />
);
}
diff --git a/awx/ui/src/components/PromptDetail/PromptDetail.js b/awx/ui/src/components/PromptDetail/PromptDetail.js
index ce4c0b5a81..742e4caf86 100644
--- a/awx/ui/src/components/PromptDetail/PromptDetail.js
+++ b/awx/ui/src/components/PromptDetail/PromptDetail.js
@@ -14,7 +14,7 @@ import PromptProjectDetail from './PromptProjectDetail';
import PromptInventorySourceDetail from './PromptInventorySourceDetail';
import PromptJobTemplateDetail from './PromptJobTemplateDetail';
import PromptWFJobTemplateDetail from './PromptWFJobTemplateDetail';
-import { VERBOSITY } from '../../constants';
+import { VERBOSITY } from '../VerbositySelectField';
const PromptTitle = styled(Title)`
margin-top: var(--pf-global--spacer--xl);
@@ -219,7 +219,7 @@ function PromptDetail({
launchConfig.ask_verbosity_on_launch ? (
) : null}
{launchConfig.ask_tags_on_launch && (
diff --git a/awx/ui/src/components/PromptDetail/PromptInventorySourceDetail.js b/awx/ui/src/components/PromptDetail/PromptInventorySourceDetail.js
index ce8e8f0c0d..7c3443895e 100644
--- a/awx/ui/src/components/PromptDetail/PromptInventorySourceDetail.js
+++ b/awx/ui/src/components/PromptDetail/PromptInventorySourceDetail.js
@@ -13,7 +13,7 @@ import { VariablesDetail } from '../CodeEditor';
import CredentialChip from '../CredentialChip';
import ChipGroup from '../ChipGroup';
import ExecutionEnvironmentDetail from '../ExecutionEnvironmentDetail';
-import { VERBOSITY } from '../../constants';
+import { VERBOSITY } from '../VerbositySelectField';
function PromptInventorySourceDetail({ resource }) {
const {
@@ -108,7 +108,7 @@ function PromptInventorySourceDetail({ resource }) {
executionEnvironment={summary_fields?.execution_environment}
/>
-
+
-
+
{typeof diff_mode === 'boolean' && (
)}
diff --git a/awx/ui/src/components/Schedule/ScheduleDetail/ScheduleDetail.js b/awx/ui/src/components/Schedule/ScheduleDetail/ScheduleDetail.js
index 7cb55ee623..6c774ed646 100644
--- a/awx/ui/src/components/Schedule/ScheduleDetail/ScheduleDetail.js
+++ b/awx/ui/src/components/Schedule/ScheduleDetail/ScheduleDetail.js
@@ -23,7 +23,7 @@ import DeleteButton from '../../DeleteButton';
import ErrorDetail from '../../ErrorDetail';
import ChipGroup from '../../ChipGroup';
import { VariablesDetail } from '../../CodeEditor';
-import { VERBOSITY } from '../../../constants';
+import { VERBOSITY } from '../../VerbositySelectField';
const PromptDivider = styled(Divider)`
margin-top: var(--pf-global--spacer--lg);
@@ -209,7 +209,7 @@ function ScheduleDetail({ hasDaysToKeepField, schedule, surveyConfig }) {
const showLimitDetail = ask_limit_on_launch && limit;
const showJobTypeDetail = ask_job_type_on_launch && job_type;
const showSCMBranchDetail = ask_scm_branch_on_launch && scm_branch;
- const showVerbosityDetail = ask_verbosity_on_launch && VERBOSITY[verbosity];
+ const showVerbosityDetail = ask_verbosity_on_launch && VERBOSITY()[verbosity];
const showPromptedFields =
showCredentialsDetail ||
@@ -306,7 +306,7 @@ function ScheduleDetail({ hasDaysToKeepField, schedule, surveyConfig }) {
/>
)}
{ask_verbosity_on_launch && (
-
+
)}
{ask_scm_branch_on_launch && (
diff --git a/awx/ui/src/components/VerbositySelectField/VerbositySelectField.js b/awx/ui/src/components/VerbositySelectField/VerbositySelectField.js
new file mode 100644
index 0000000000..42399cdef0
--- /dev/null
+++ b/awx/ui/src/components/VerbositySelectField/VerbositySelectField.js
@@ -0,0 +1,58 @@
+import React from 'react';
+import { t } from '@lingui/macro';
+import { useField } from 'formik';
+import { FormGroup } from '@patternfly/react-core';
+import Popover from 'components/Popover';
+import AnsibleSelect from 'components/AnsibleSelect';
+import FieldWithPrompt from 'components/FieldWithPrompt';
+
+const VERBOSITY = () => ({
+ 0: t`0 (Normal)`,
+ 1: t`1 (Verbose)`,
+ 2: t`2 (More Verbose)`,
+ 3: t`3 (Debug)`,
+ 4: t`4 (Connection Debug)`,
+ 5: t`5 (WinRM Debug)`,
+});
+
+function VerbositySelectField({
+ fieldId,
+ promptId,
+ promptName,
+ tooltip,
+ isValid,
+}) {
+ const VERBOSE_OPTIONS = Object.entries(VERBOSITY()).map(([k, v]) => ({
+ key: `${k}`,
+ value: `${k}`,
+ label: v,
+ }));
+ const [verbosityField, , verbosityHelpers] = useField('verbosity');
+ return promptId ? (
+
+
+
+ ) : (
+ }
+ >
+ verbosityHelpers.setValue(value)}
+ />
+
+ );
+}
+
+export { VerbositySelectField, VERBOSITY };
diff --git a/awx/ui/src/components/VerbositySelectField/index.js b/awx/ui/src/components/VerbositySelectField/index.js
new file mode 100644
index 0000000000..8da8d324db
--- /dev/null
+++ b/awx/ui/src/components/VerbositySelectField/index.js
@@ -0,0 +1 @@
+export { VERBOSITY, VerbositySelectField } from './VerbositySelectField';
diff --git a/awx/ui/src/constants.js b/awx/ui/src/constants.js
index 08119f1b85..d4d7259a4d 100644
--- a/awx/ui/src/constants.js
+++ b/awx/ui/src/constants.js
@@ -1,5 +1,3 @@
-import { t } from '@lingui/macro';
-
/* eslint-disable-next-line import/prefer-default-export */
export const JOB_TYPE_URL_SEGMENTS = {
job: 'playbook',
@@ -14,18 +12,3 @@ export const SESSION_TIMEOUT_KEY = 'awx-session-timeout';
export const SESSION_REDIRECT_URL = 'awx-redirect-url';
export const PERSISTENT_FILTER_KEY = 'awx-persistent-filter';
export const SESSION_USER_ID = 'awx-session-user-id';
-
-export const VERBOSITY = {
- 0: t`0 (Normal)`,
- 1: t`1 (Verbose)`,
- 2: t`2 (More Verbose)`,
- 3: t`3 (Debug)`,
- 4: t`4 (Connection Debug)`,
- 5: t`5 (WinRM Debug)`,
-};
-
-export const VERBOSE_OPTIONS = Object.entries(VERBOSITY).map(([k, v]) => ({
- key: k,
- value: k,
- label: v,
-}));
diff --git a/awx/ui/src/locales/en/messages.po b/awx/ui/src/locales/en/messages.po
index da1bad603a..d481fa0d38 100644
--- a/awx/ui/src/locales/en/messages.po
+++ b/awx/ui/src/locales/en/messages.po
@@ -17,95 +17,63 @@ msgstr ""
msgid "(Limited to first 10)"
msgstr "(Limited to first 10)"
-#: components/TemplateList/TemplateListItem.js:98
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: components/TemplateList/TemplateListItem.js:103
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(Prompt on launch)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "* This field will be retrieved from an external secret management system using the specified credential."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (project root)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (Normal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (Warning)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (Info)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (Verbose)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (Debug)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (More Verbose)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (Debug)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (Connection Debug)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (WinRM Debug)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -124,15 +92,15 @@ msgstr "A subscription manifest is an export of a Red Hat Subscription. To gener
msgid "ALL"
msgstr "ALL"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "API Service/Integration Key"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "API Token"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "API service/integration key"
@@ -140,22 +108,22 @@ msgstr "API service/integration key"
msgid "About"
msgstr ""
-#: routeConfig.js:91
-#: screens/ActivityStream/ActivityStream.js:171
-#: screens/Credential/Credential.js:72
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:63
-#: screens/Inventory/SmartInventory.js:66
-#: screens/Organization/Organization.js:123
+#: routeConfig.js:92
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
+#: screens/Inventory/SmartInventory.js:67
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr ""
@@ -163,12 +131,12 @@ msgstr ""
msgid "Access Token Expiration"
msgstr "Access Token Expiration"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "Account SID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "Account token"
@@ -176,58 +144,58 @@ msgstr "Account token"
msgid "Action"
msgstr "Action"
-#: components/JobList/JobList.js:245
-#: components/JobList/JobListItem.js:96
+#: components/JobList/JobList.js:249
+#: components/JobList/JobListItem.js:103
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:230
-#: components/TemplateList/TemplateListItem.js:181
-#: screens/ActivityStream/ActivityStream.js:258
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:147
-#: screens/Credential/CredentialList/CredentialListItem.js:63
+#: screens/Credential/CredentialList/CredentialList.js:166
+#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:154
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:79
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:168
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:163
-#: screens/Host/HostList/HostListItem.js:64
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
-#: screens/Inventory/InventoryList/InventoryList.js:207
-#: screens/Inventory/InventoryList/InventoryListItem.js:127
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
+#: screens/Inventory/InventoryList/InventoryList.js:222
+#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:99
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:196
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:181
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:124
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:159
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82
-#: screens/Project/ProjectList/ProjectList.js:211
-#: screens/Project/ProjectList/ProjectListItem.js:209
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
+#: screens/Project/ProjectList/ProjectList.js:225
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -238,31 +206,32 @@ msgstr "Action"
msgid "Actions"
msgstr "Actions"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:263
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "Activity"
-#: routeConfig.js:48
-#: screens/ActivityStream/ActivityStream.js:111
+#: routeConfig.js:49
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "Activity Stream"
-#: screens/ActivityStream/ActivityStream.js:114
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "Activity Stream type selector"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "Actor"
@@ -279,19 +248,19 @@ msgstr "Add Link"
msgid "Add Node"
msgstr "Add Node"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "Add Question"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr ""
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr ""
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr ""
@@ -304,7 +273,7 @@ msgstr "Add a new node"
msgid "Add a new node between these two nodes"
msgstr "Add a new node between these two nodes"
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:183
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:113
msgid "Add container group"
msgstr "Add container group"
@@ -316,15 +285,15 @@ msgstr "Add existing group"
msgid "Add existing host"
msgstr "Add existing host"
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:114
msgid "Add instance group"
msgstr "Add instance group"
-#: screens/Inventory/InventoryList/InventoryList.js:122
+#: screens/Inventory/InventoryList/InventoryList.js:136
msgid "Add inventory"
msgstr "Add inventory"
-#: components/TemplateList/TemplateList.js:136
+#: components/TemplateList/TemplateList.js:151
msgid "Add job template"
msgstr "Add job template"
@@ -336,11 +305,11 @@ msgstr "Add new group"
msgid "Add new host"
msgstr "Add new host"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:60
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "Add resource type"
-#: screens/Inventory/InventoryList/InventoryList.js:123
+#: screens/Inventory/InventoryList/InventoryList.js:137
msgid "Add smart inventory"
msgstr "Add smart inventory"
@@ -352,29 +321,30 @@ msgstr "Add team permissions"
msgid "Add user permissions"
msgstr "Add user permissions"
-#: components/TemplateList/TemplateList.js:137
+#: components/TemplateList/TemplateList.js:152
msgid "Add workflow template"
msgstr "Add workflow template"
-#: routeConfig.js:112
-#: screens/ActivityStream/ActivityStream.js:182
+#: routeConfig.js:113
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:136
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: components/DataListToolbar/DataListToolbar.js:139
+#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "Advanced"
-#: components/Search/AdvancedSearch.js:240
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "Advanced search documentation"
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "Advanced search value input"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -386,7 +356,7 @@ msgstr ""
"before executing job tasks. This is intended for static content,\n"
"like the Ansible inventory .ini file format."
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "After number of occurrences"
@@ -395,10 +365,10 @@ msgid "Alert modal"
msgstr "Alert modal"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "All"
@@ -410,16 +380,16 @@ msgstr "All job types"
msgid "All jobs"
msgstr "All jobs"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "Allow Branch Override"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "Allow branch override"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
@@ -427,14 +397,14 @@ msgstr ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "Allowed URIs list, space separated"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "Always"
@@ -462,27 +432,27 @@ msgstr "Ansible Tower Documentation."
msgid "Answer type"
msgstr "Answer type"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "Answer variable name"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "Any"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "Application"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "Application Name"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "Application information"
@@ -491,57 +461,58 @@ msgstr "Application information"
msgid "Application name"
msgstr "Application name"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "Application not found."
#: components/Lookup/ApplicationLookup.js:95
-#: routeConfig.js:141
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: routeConfig.js:142
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:203
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "Applications & Tokens"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "Approval"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "Approve"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr "Approve, cancel or deny"
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "Approved"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "Approved - {0}. See the Activity Stream for more information."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "Approved by {0} - {1}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "April"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "Are you sure you want to cancel this job?"
@@ -585,20 +556,20 @@ msgstr ""
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr ""
-#: screens/Job/JobOutput/JobOutput.js:781
+#: screens/Job/JobOutput/JobOutput.js:771
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?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "Arguments"
-#: screens/Job/JobDetail/JobDetail.js:451
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "Artifacts"
-#: screens/InstanceGroup/Instances/InstanceList.js:223
+#: screens/InstanceGroup/Instances/InstanceList.js:222
#: screens/User/UserTeams/UserTeamList.js:208
msgid "Associate"
msgstr "Associate"
@@ -616,7 +587,7 @@ msgstr "Association modal"
msgid "At least one value must be selected for this field."
msgstr "At least one value must be selected for this field."
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "August"
@@ -628,18 +599,27 @@ msgstr ""
msgid "Authorization Code Expiration"
msgstr "Authorization Code Expiration"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "Authorization grant type"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr "Automation Analytics"
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr "Automation Analytics dashboard"
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -648,8 +628,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Azure AD settings"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -659,7 +639,7 @@ msgstr "Azure AD settings"
msgid "Back"
msgstr "Back"
-#: screens/Credential/Credential.js:64
+#: screens/Credential/Credential.js:65
msgid "Back to Credentials"
msgstr "Back to Credentials"
@@ -678,17 +658,17 @@ msgstr "Back to Groups"
msgid "Back to Hosts"
msgstr "Back to Hosts"
-#: screens/InstanceGroup/InstanceGroup.js:74
+#: screens/InstanceGroup/InstanceGroup.js:61
msgid "Back to Instance Groups"
msgstr "Back to Instance Groups"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "Back to Instances"
-#: screens/Inventory/Inventory.js:56
-#: screens/Inventory/SmartInventory.js:59
+#: screens/Inventory/Inventory.js:57
+#: screens/Inventory/SmartInventory.js:60
msgid "Back to Inventories"
msgstr "Back to Inventories"
@@ -765,7 +745,7 @@ msgstr "Back to credential types"
msgid "Back to execution environments"
msgstr "Back to execution environments"
-#: screens/InstanceGroup/ContainerGroup.js:68
+#: screens/InstanceGroup/ContainerGroup.js:59
msgid "Back to instance groups"
msgstr "Back to instance groups"
@@ -773,7 +753,7 @@ msgstr "Back to instance groups"
msgid "Back to management jobs"
msgstr "Back to management jobs"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -785,11 +765,11 @@ msgstr ""
"Together the base path and selected playbook directory provide the full\n"
"path used to locate playbooks."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "Basic auth password"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -809,39 +789,47 @@ msgstr ""
msgid "Browse"
msgstr "Browse"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "Browse…"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+
+#: screens/TopologyView/Legend.js:74
+msgid "C"
+msgstr "C"
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "Cache Timeout"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "Cache timeout"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "Cache timeout (seconds)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -851,12 +839,14 @@ msgstr "Cache timeout (seconds)"
#: components/FormActionGroup/FormActionGroup.js:23
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
-#: components/Lookup/HostFilterLookup.js:361
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/HostFilterLookup.js:387
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -866,8 +856,8 @@ msgstr "Cache timeout (seconds)"
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:101
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:107
#: screens/Setting/shared/RevertAllAlert.js:32
#: screens/Setting/shared/RevertFormActionGroup.js:31
#: screens/Setting/shared/RevertFormActionGroup.js:37
@@ -877,7 +867,7 @@ msgstr "Cache timeout (seconds)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:201
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -886,32 +876,34 @@ msgstr "Cache timeout (seconds)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "Cancel Inventory Source Sync"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:757
-#: screens/Job/JobOutput/JobOutput.js:758
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "Cancel Job"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "Cancel Project Sync"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "Cancel Sync"
-#: screens/Job/JobOutput/JobOutput.js:765
-#: screens/Job/JobOutput/JobOutput.js:768
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "Cancel job"
@@ -923,7 +915,7 @@ msgstr "Cancel link changes"
msgid "Cancel link removal"
msgstr "Cancel link removal"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "Cancel lookup"
@@ -948,20 +940,24 @@ msgstr "Cancel selected jobs"
msgid "Cancel subscription edit"
msgstr "Cancel subscription edit"
-#: components/JobList/JobListItem.js:106
-#: screens/Job/JobDetail/JobDetail.js:492
+#: components/JobList/JobListItem.js:113
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "Cancel {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "Canceled"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr "Cannot approve, cancel or deny completed workflow approvals"
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -974,15 +970,15 @@ msgstr ""
msgid "Cannot run health check on hop nodes."
msgstr "Cannot run health check on hop nodes."
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:213
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74
msgid "Capacity"
msgstr "Capacity"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -1008,7 +1004,7 @@ msgstr "Case-insensitive version of regex."
msgid "Case-insensitive version of startswith."
msgstr "Case-insensitive version of startswith."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
@@ -1016,7 +1012,7 @@ msgstr ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "Changed"
@@ -1025,13 +1021,13 @@ msgstr "Changed"
msgid "Changes"
msgstr "Changes"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "Channel"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "Check"
@@ -1055,20 +1051,20 @@ msgstr "Choose a Notification Type"
msgid "Choose a Playbook Directory"
msgstr "Choose a Playbook Directory"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "Choose a Source Control Type"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Choose a Webhook Service"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "Choose a job type"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "Choose a module"
@@ -1076,7 +1072,7 @@ msgstr "Choose a module"
msgid "Choose a source"
msgstr "Choose a source"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "Choose an HTTP method"
@@ -1098,21 +1094,21 @@ msgstr "Choose roles to apply to the selected resources. Note that all selected
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."
-#: components/AddRole/AddResourceRole.js:193
+#: components/AddRole/AddResourceRole.js:174
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."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "Clean"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "Clear"
-#: components/DataListToolbar/DataListToolbar.js:94
-#: screens/Job/JobOutput/JobOutputSearch.js:142
+#: components/DataListToolbar/DataListToolbar.js:95
+#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "Clear all filters"
@@ -1124,10 +1120,14 @@ msgstr "Clear subscription"
msgid "Clear subscription selection"
msgstr "Clear subscription selection"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
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."
+#: screens/TopologyView/Tooltip.js:60
+msgid "Click on a node icon to display the details."
+msgstr "Click on a node icon to display the details."
+
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:134
msgid "Click the Edit button below to reconfigure the node."
msgstr "Click the Edit button below to reconfigure the node."
@@ -1148,29 +1148,29 @@ msgstr "Click to rearrange the order of the survey questions"
msgid "Click to toggle default value"
msgstr "Click to toggle default value"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "Click to view job details"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "Client ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "Client Identifier"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "Client identifier"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "Client secret"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "Client type"
@@ -1179,7 +1179,7 @@ msgstr "Client type"
msgid "Close"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:122
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123
msgid "Close subscription modal"
msgstr "Close subscription modal"
@@ -1199,24 +1199,36 @@ msgstr "Collapse all job events"
msgid "Collapse section"
msgstr "Collapse section"
-#: components/JobList/JobList.js:210
-#: components/JobList/JobListItem.js:39
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: components/JobList/JobList.js:214
+#: components/JobList/JobListItem.js:45
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "Command"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "Compliant"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "Concurrent Jobs"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1236,11 +1248,11 @@ msgstr "Confirm Disable Local Authorization"
msgid "Confirm Password"
msgstr "Confirm Password"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "Confirm cancel job"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "Confirm cancellation"
@@ -1268,21 +1280,21 @@ msgstr "Confirm removal of all nodes"
msgid "Confirm revert all"
msgstr "Confirm revert all"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:91
msgid "Confirm selection"
msgstr "Confirm selection"
-#: screens/Job/JobDetail/JobDetail.js:285
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "Container Group"
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:63
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:57
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68
msgid "Container group"
msgstr "Container group"
-#: screens/InstanceGroup/ContainerGroup.js:93
+#: screens/InstanceGroup/ContainerGroup.js:84
msgid "Container group not found."
msgstr "Container group not found."
@@ -1295,12 +1307,16 @@ msgstr "Content Loading"
msgid "Continue"
msgstr "Continue"
-#: screens/InstanceGroup/Instances/InstanceList.js:197
+#: screens/InstanceGroup/Instances/InstanceList.js:196
#: screens/Instances/InstanceList/InstanceList.js:116
msgid "Control"
msgstr "Control"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/TopologyView/Legend.js:77
+msgid "Control node"
+msgstr "Control node"
+
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
@@ -1308,7 +1324,7 @@ msgstr ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
@@ -1317,20 +1333,29 @@ msgstr ""
"will produce as the playbook executes."
#: screens/Template/shared/JobTemplateForm.js:464
-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."
+#~ 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."
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+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."
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr "Controller Node"
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "Convergence"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "Convergence select"
@@ -1338,7 +1363,7 @@ msgstr "Convergence select"
msgid "Copy"
msgstr "Copy"
-#: screens/Credential/CredentialList/CredentialListItem.js:77
+#: screens/Credential/CredentialList/CredentialListItem.js:80
msgid "Copy Credential"
msgstr "Copy Credential"
@@ -1346,11 +1371,11 @@ msgstr "Copy Credential"
msgid "Copy Error"
msgstr "Copy Error"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:96
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:104
msgid "Copy Execution Environment"
msgstr "Copy Execution Environment"
-#: screens/Inventory/InventoryList/InventoryListItem.js:150
+#: screens/Inventory/InventoryList/InventoryListItem.js:154
msgid "Copy Inventory"
msgstr "Copy Inventory"
@@ -1358,16 +1383,16 @@ msgstr "Copy Inventory"
msgid "Copy Notification Template"
msgstr "Copy Notification Template"
-#: screens/Project/ProjectList/ProjectListItem.js:249
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "Copy Project"
-#: components/TemplateList/TemplateListItem.js:234
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "Copy Template"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
-#: screens/Project/ProjectList/ProjectListItem.js:94
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
+#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "Copy full revision to clipboard."
@@ -1375,32 +1400,35 @@ msgstr "Copy full revision to clipboard."
msgid "Copyright"
msgstr "Copyright"
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "Create"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "Create New Application"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "Create New Credential"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "Create New Host"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "Create New Job Template"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "Create New Notification Template"
@@ -1409,20 +1437,20 @@ msgstr "Create New Notification Template"
msgid "Create New Organization"
msgstr ""
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "Create New Project"
-#: screens/Inventory/Inventories.js:89
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "Create New Schedule"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "Create New Team"
@@ -1431,16 +1459,16 @@ msgstr "Create New Team"
msgid "Create New User"
msgstr "Create New User"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "Create New Workflow Template"
-#: screens/Host/HostList/SmartInventoryButton.js:18
+#: screens/Host/HostList/SmartInventoryButton.js:26
msgid "Create a new Smart Inventory with the applied filter"
msgstr "Create a new Smart Inventory with the applied filter"
-#: screens/InstanceGroup/InstanceGroups.js:39
-#: screens/InstanceGroup/InstanceGroups.js:49
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "Create new container group"
@@ -1457,30 +1485,30 @@ msgstr "Create new credential type"
msgid "Create new execution environment"
msgstr "Create new execution environment"
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventories.js:80
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "Create new group"
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "Create new host"
-#: screens/InstanceGroup/InstanceGroups.js:38
-#: screens/InstanceGroup/InstanceGroups.js:48
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "Create new instance group"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "Create new inventory"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "Create new smart inventory"
-#: screens/Inventory/Inventories.js:83
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "Create new source"
@@ -1489,39 +1517,39 @@ msgid "Create user token"
msgstr "Create user token"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:137
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:95
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:112
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:427
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1532,30 +1560,30 @@ msgstr ""
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
-#: components/TemplateList/TemplateList.js:211
+#: components/TemplateList/TemplateList.js:226
#: 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.js:135
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
#: screens/Host/HostGroups/HostGroupsList.js:164
-#: screens/Host/HostList/HostList.js:149
+#: screens/Host/HostList/HostList.js:157
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:174
#: screens/Inventory/InventoryHosts/InventoryHostList.js:128
-#: screens/Inventory/InventoryList/InventoryList.js:184
+#: screens/Inventory/InventoryList/InventoryList.js:199
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:185
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:94
#: screens/Organization/OrganizationList/OrganizationList.js:131
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:127
-#: screens/Project/ProjectList/ProjectList.js:199
+#: screens/Project/ProjectList/ProjectList.js:213
#: screens/Team/TeamList/TeamList.js:130
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:163
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:112
@@ -1563,30 +1591,29 @@ msgstr ""
msgid "Created By (Username)"
msgstr "Created By (Username)"
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:73
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:81
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:147
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:73
msgid "Created by (username)"
msgstr "Created by (username)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:53
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "Credential"
@@ -1599,14 +1626,15 @@ msgstr "Credential Input Sources"
msgid "Credential Name"
msgstr "Credential Name"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "Credential Type"
-#: routeConfig.js:116
-#: screens/ActivityStream/ActivityStream.js:184
+#: routeConfig.js:117
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1614,7 +1642,11 @@ msgstr "Credential Type"
msgid "Credential Types"
msgstr ""
-#: screens/Credential/Credential.js:91
+#: screens/Credential/CredentialList/CredentialList.js:113
+msgid "Credential copied successfully"
+msgstr "Credential copied successfully"
+
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "Credential not found."
@@ -1623,37 +1655,41 @@ msgstr "Credential not found."
msgid "Credential passwords"
msgstr "Credential passwords"
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:60
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr "Credential to authenticate with Kubernetes or OpenShift"
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "Credential to authenticate with a protected container registry."
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "Credential type not found."
-#: components/JobList/JobListItem.js:241
+#: components/JobList/JobListItem.js:260
#: components/LaunchPrompt/steps/CredentialsStep.js:190
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:321
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
-#: routeConfig.js:69
-#: screens/ActivityStream/ActivityStream.js:159
-#: screens/Credential/CredentialList/CredentialList.js:175
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:329
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: routeConfig.js:70
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr ""
@@ -1666,22 +1702,25 @@ msgstr "Credentials that require passwords on launch are not permitted. Please
msgid "Current page"
msgstr ""
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:82
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr "Custom Kubernetes or OpenShift Pod specification."
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "Custom pod spec"
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:77
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:79
#: screens/Organization/OrganizationList/OrganizationListItem.js:55
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:69
-#: screens/Project/ProjectList/ProjectListItem.js:183
+#: screens/Project/ProjectList/ProjectListItem.js:188
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/TemplateList/TemplateListItem.js:158
+#: components/TemplateList/TemplateListItem.js:163
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
@@ -1689,8 +1728,8 @@ msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an e
msgid "Customize messages…"
msgstr "Customize messages…"
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:68
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:69
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:65
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:66
msgid "Customize pod specification"
msgstr "Customize pod specification"
@@ -1699,12 +1738,12 @@ msgstr "Customize pod specification"
msgid "DELETED"
msgstr "DELETED"
-#: routeConfig.js:33
+#: routeConfig.js:34
#: screens/Dashboard/Dashboard.js:74
msgid "Dashboard"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "Dashboard (all activity)"
@@ -1716,14 +1755,14 @@ msgstr "Data retention period"
msgid "Date"
msgstr "Date"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "Day"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "Days of Data to Keep"
@@ -1739,11 +1778,11 @@ msgstr "Days remaining"
msgid "Days to keep"
msgstr "Days to keep"
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "Debug"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "December"
@@ -1754,9 +1793,9 @@ msgstr "December"
msgid "Default"
msgstr "Default"
-#: screens/Template/Survey/SurveyReorderModal.js:209
-#: screens/Template/Survey/SurveyReorderModal.js:209
-#: screens/Template/Survey/SurveyReorderModal.js:231
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "Default Answer(s)"
@@ -1764,9 +1803,9 @@ msgstr "Default Answer(s)"
msgid "Default Execution Environment"
msgstr "Default Execution Environment"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "Default answer"
@@ -1785,35 +1824,35 @@ msgstr "Define system-level features and functions"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:130
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:140
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:504
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr ""
@@ -1821,42 +1860,42 @@ msgstr ""
msgid "Delete All Groups and Hosts"
msgstr "Delete All Groups and Hosts"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "Delete Credential"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "Delete Execution Environment"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "Delete Host"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:135
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "Delete Inventory"
-#: screens/Job/JobDetail/JobDetail.js:500
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "Delete Job"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "Delete Job Template"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "Delete Notification"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "Delete Organization"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "Delete Project"
@@ -1864,7 +1903,7 @@ msgstr "Delete Project"
msgid "Delete Questions"
msgstr "Delete Questions"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "Delete Schedule"
@@ -1880,15 +1919,15 @@ msgstr "Delete Team"
msgid "Delete User"
msgstr "Delete User"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "Delete User Token"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "Delete Workflow Approval"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "Delete Workflow Job Template"
@@ -1897,28 +1936,28 @@ msgstr "Delete Workflow Job Template"
msgid "Delete all nodes"
msgstr "Delete all nodes"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "Delete application"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "Delete credential type"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "Delete error"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "Delete instance group"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "Delete inventory source"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "Delete smart inventory"
@@ -1926,7 +1965,7 @@ msgstr "Delete smart inventory"
msgid "Delete survey question"
msgstr "Delete survey question"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1939,7 +1978,7 @@ msgstr ""
"of time required to complete an update."
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "Delete the project before syncing"
@@ -1955,181 +1994,191 @@ msgstr "Delete this node"
msgid "Delete {pluralizedItemName}?"
msgstr "Delete {pluralizedItemName}?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "Deleted"
-#: components/TemplateList/TemplateList.js:278
-#: screens/Credential/CredentialList/CredentialList.js:191
-#: screens/Inventory/InventoryList/InventoryList.js:268
-#: screens/Project/ProjectList/ProjectList.js:274
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Inventory/InventoryList/InventoryList.js:284
+#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
msgstr "Deletion Error"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:202
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:212
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:309
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:227
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:233
msgid "Deletion error"
msgstr "Deletion error"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "Denied"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "Denied - {0}. See the Activity Stream for more information."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "Denied by {0} - {1}"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "Deny"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "Deprecated"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
-#: components/TemplateList/TemplateList.js:195
-#: components/TemplateList/TemplateListItem.js:257
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/Schedule/shared/ScheduleForm.js:115
+#: components/TemplateList/TemplateList.js:210
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:131
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:145
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
-#: screens/Host/HostList/HostList.js:145
+#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
-#: screens/Inventory/InventoryList/InventoryList.js:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryList/InventoryList.js:195
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:40
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:127
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
-#: screens/Project/ProjectList/ProjectList.js:176
-#: screens/Project/ProjectList/ProjectListItem.js:268
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectList/ProjectList.js:190
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "Destination Channels"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "Destination Channels or Users"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "Destination SMS Number(s)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "Destination SMS number(s)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "Destination channels"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "Destination channels or users"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
-#: components/ErrorDetail/ErrorDetail.js:75
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
+#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:70
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
-#: screens/InstanceGroup/ContainerGroup.js:75
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:81
-#: screens/InstanceGroup/InstanceGroups.js:51
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
+#: screens/InstanceGroup/ContainerGroup.js:66
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
#: screens/InstanceGroup/InstanceGroups.js:59
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:85
-#: screens/Inventory/Inventory.js:62
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
-#: screens/Inventory/SmartInventory.js:65
+#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2164,50 +2213,53 @@ msgstr "Destination channels or users"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
-#: screens/User/User.js:63
+#: screens/TopologyView/Tooltip.js:56
+#: screens/TopologyView/Tooltip.js:70
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "Details tab"
-#: components/Search/AdvancedSearch.js:172
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "Direct Keys"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "Disable SSL Verification"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "Disable SSL verification"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
+#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "Disabled"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2222,11 +2274,11 @@ msgstr "Disassociate"
msgid "Disassociate group from host?"
msgstr "Disassociate group from host?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "Disassociate host from group?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "Disassociate instance from instance group?"
@@ -2254,21 +2306,26 @@ msgid "Disassociate?"
msgstr "Disassociate?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "Discard local changes before syncing"
#: screens/Template/shared/JobTemplateForm.js:479
-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."
+#~ 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."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "Documentation."
@@ -2284,36 +2341,36 @@ msgstr "Done"
msgid "Download Output"
msgstr "Download Output"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "Drag a file here or browse to upload"
#: components/SelectedList/DraggableSelectedList.js:68
-#~ msgid "Draggable list to reorder and remove selected items."
-#~ msgstr "Draggable list to reorder and remove selected items."
+msgid "Draggable list to reorder and remove selected items."
+msgstr "Draggable list to reorder and remove selected items."
#: components/SelectedList/DraggableSelectedList.js:43
-#~ msgid "Dragging cancelled. List is unchanged."
-#~ msgstr "Dragging cancelled. List is unchanged."
+msgid "Dragging cancelled. List is unchanged."
+msgstr "Dragging cancelled. List is unchanged."
#: components/SelectedList/DraggableSelectedList.js:38
-#~ msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
-#~ msgstr "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
#: components/SelectedList/DraggableSelectedList.js:32
-#~ msgid "Dragging started for item id: {newId}."
-#~ msgstr "Dragging started for item id: {newId}."
+msgid "Dragging started for item id: {newId}."
+msgstr "Dragging started for item id: {newId}."
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "E-mail"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "E-mail options"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
msgid ""
"Each time a job runs using this inventory,\n"
"refresh the inventory from the selected source before\n"
@@ -2323,7 +2380,7 @@ msgstr ""
"refresh the inventory from the selected source before\n"
"executing job tasks."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:96
+#: screens/Project/shared/Project.helptext.js:120
msgid ""
"Each time a job runs using this project, update the\n"
"revision of the project prior to starting the job."
@@ -2331,29 +2388,29 @@ msgstr ""
"Each time a job runs using this project, update the\n"
"revision of the project prior to starting the job."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:115
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:129
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:125
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2381,17 +2438,17 @@ msgstr ""
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
msgstr ""
-#: screens/Credential/CredentialList/CredentialListItem.js:64
-#: screens/Credential/CredentialList/CredentialListItem.js:68
+#: screens/Credential/CredentialList/CredentialListItem.js:67
+#: screens/Credential/CredentialList/CredentialListItem.js:71
msgid "Edit Credential"
msgstr "Edit Credential"
@@ -2400,14 +2457,14 @@ msgstr "Edit Credential"
msgid "Edit Credential Plugin Configuration"
msgstr "Edit Credential Plugin Configuration"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2432,14 +2489,14 @@ msgstr "Edit Credential Plugin Configuration"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:82
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:86
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:94
msgid "Edit Execution Environment"
msgstr "Edit Execution Environment"
@@ -2450,16 +2507,16 @@ msgstr "Edit Execution Environment"
msgid "Edit Group"
msgstr "Edit Group"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "Edit Host"
-#: screens/Inventory/InventoryList/InventoryListItem.js:130
-#: screens/Inventory/InventoryList/InventoryListItem.js:135
+#: screens/Inventory/InventoryList/InventoryListItem.js:134
+#: screens/Inventory/InventoryList/InventoryListItem.js:139
msgid "Edit Inventory"
msgstr "Edit Inventory"
@@ -2489,22 +2546,22 @@ msgstr "Edit Order"
msgid "Edit Organization"
msgstr "Edit Organization"
-#: screens/Project/ProjectList/ProjectListItem.js:235
-#: screens/Project/ProjectList/ProjectListItem.js:240
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "Edit Project"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "Edit Question"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "Edit Schedule"
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:129
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:131
msgid "Edit Source"
msgstr "Edit Source"
@@ -2512,16 +2569,15 @@ msgstr "Edit Source"
msgid "Edit Survey"
msgstr "Edit Survey"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "Edit Team"
-#: components/TemplateList/TemplateListItem.js:219
-#: components/TemplateList/TemplateListItem.js:225
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:103
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "Edit Template"
@@ -2542,12 +2598,12 @@ msgstr "Edit credential type"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:56
-#: screens/InstanceGroup/InstanceGroups.js:61
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventories.js:66
-#: screens/Inventory/Inventories.js:75
-#: screens/Inventory/Inventories.js:86
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "Edit details"
@@ -2556,7 +2612,7 @@ msgstr "Edit details"
msgid "Edit group"
msgstr "Edit group"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "Edit host"
@@ -2578,13 +2634,13 @@ msgstr "Edit this link"
msgid "Edit this node"
msgstr "Edit this node"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "Edit workflow"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "Elapsed"
@@ -2597,22 +2653,22 @@ msgid "Elapsed time that the job ran"
msgstr "Elapsed time that the job ran"
#: components/NotificationList/NotificationList.js:193
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:149
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134
#: screens/User/UserDetail/UserDetail.js:66
#: screens/User/UserList/UserList.js:115
#: screens/User/shared/UserForm.js:73
msgid "Email"
msgstr "Email"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "Email Options"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "Enable Concurrent Jobs"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "Enable Fact Storage"
@@ -2620,14 +2676,14 @@ msgstr "Enable Fact Storage"
msgid "Enable HTTPS certificate verification"
msgstr "Enable HTTPS certificate verification"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Enable Webhook"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "Enable Webhook for this workflow job template."
@@ -2639,8 +2695,8 @@ msgstr "Enable external logging"
msgid "Enable log system tracking facts individually"
msgstr "Enable log system tracking facts individually"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "Enable privilege escalation"
@@ -2652,35 +2708,35 @@ msgstr "Enable privilege escalation"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Enable simplified login for your {brandName} applications"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "Enable webhook for this template."
#: components/InstanceToggle/InstanceToggle.js:55
-#: components/Lookup/HostFilterLookup.js:100
+#: components/Lookup/HostFilterLookup.js:110
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
msgid "Enabled"
msgstr "Enabled"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "Enabled Options"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "Enabled Value"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "Enabled Variable"
@@ -2696,7 +2752,7 @@ msgstr "Enabled Variable"
#~ "and request a configuration update using this job\n"
#~ "template."
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2709,23 +2765,27 @@ msgstr ""
"template"
#: screens/Template/shared/JobTemplateForm.js:568
-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."
+#~ 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."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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."
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "Encrypted"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "End"
@@ -2737,7 +2797,7 @@ msgstr "End User License Agreement"
msgid "End date"
msgstr "End date"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "End date/time"
@@ -2753,7 +2813,7 @@ msgstr "End time"
msgid "End user license agreement"
msgstr "End user license agreement"
-#: screens/Host/HostList/SmartInventoryButton.js:15
+#: screens/Host/HostList/SmartInventoryButton.js:23
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"
@@ -2776,22 +2836,22 @@ msgstr ""
"Ansible Tower documentation for example syntax."
#: screens/Inventory/shared/InventoryForm.js:65
-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"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "Enter one Annotation Tag per line, without commas."
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "Enter one Annotation Tag per line, without commas."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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."
+#~ 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."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:365
#~ msgid ""
@@ -2802,20 +2862,20 @@ msgstr ""
#~ "is required for channels."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-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."
+#~ 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."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413
#~ msgid ""
@@ -2834,163 +2894,168 @@ msgstr ""
#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-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."
+#~ 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."
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-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."
+#~ 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."
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr "Environment variables or extra variables that specify the values a credential type can inject."
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:215
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:138
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
+#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "Error"
-#: screens/Project/ProjectList/ProjectList.js:286
+#: screens/Project/ProjectList/ProjectList.js:302
msgid "Error fetching updated project"
msgstr "Error fetching updated project"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "Error message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "Error message body"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "Error saving the workflow!"
-#: components/AdHocCommands/AdHocCommands.js:110
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/ResourceAccessList/ResourceAccessList.js:233
-#: components/ResourceAccessList/ResourceAccessList.js:245
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:281
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:194
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:222
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:296
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:149
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
-#: screens/Inventory/InventoryList/InventoryList.js:269
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
+#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:220
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:179
-#: screens/Project/ProjectList/ProjectList.js:275
-#: screens/Project/ProjectList/ProjectList.js:287
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
+#: screens/Project/ProjectList/ProjectList.js:291
+#: screens/Project/ProjectList/ProjectList.js:303
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -3001,13 +3066,16 @@ msgstr "Error saving the workflow!"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "Error!"
@@ -3015,14 +3083,14 @@ msgstr "Error!"
msgid "Error:"
msgstr "Error:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "Errors"
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
-#: screens/Job/JobOutput/JobOutputSearch.js:97
+#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
msgstr "Event"
@@ -3038,14 +3106,18 @@ msgstr "Event detail modal"
msgid "Event summary not available"
msgstr "Event summary not available"
-#: screens/ActivityStream/ActivityStream.js:226
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "Events"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "Every minute for {0} times"
+#: screens/TopologyView/Legend.js:82
+msgid "Ex"
+msgstr "Ex"
+
#: components/Search/LookupTypeInput.js:39
msgid "Exact match (default lookup if not specified)."
msgstr "Exact match (default lookup if not specified)."
@@ -3054,68 +3126,68 @@ msgstr "Exact match (default lookup if not specified)."
msgid "Exact search on id field."
msgstr "Exact search on id field."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "Example URLs for GIT Source Control include:"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "Example URLs for Remote Archive Source Control include:"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "Example URLs for Subversion Source Control include:"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "Examples include:"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "Examples:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "Execute regardless of the parent node's final state."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "Execute when the parent node results in a failure state."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "Execute when the parent node results in a successful state."
-#: screens/InstanceGroup/Instances/InstanceList.js:198
+#: screens/InstanceGroup/Instances/InstanceList.js:197
#: screens/Instances/InstanceList/InstanceList.js:117
msgid "Execution"
msgstr "Execution"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "Execution Environment"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
-#: components/TemplateList/TemplateListItem.js:155
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
+#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "Execution Environment Missing"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
-#: routeConfig.js:146
-#: screens/ActivityStream/ActivityStream.js:209
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:115
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:177
+#: routeConfig.js:147
+#: screens/ActivityStream/ActivityStream.js:217
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3123,18 +3195,26 @@ msgstr "Execution Environment Missing"
msgid "Execution Environments"
msgstr "Execution Environments"
-#: screens/Job/JobDetail/JobDetail.js:272
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "Execution Node"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:103
+msgid "Execution environment copied successfully"
+msgstr "Execution environment copied successfully"
+
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "Execution environment is missing or deleted."
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "Execution environment not found."
+#: screens/TopologyView/Legend.js:86
+msgid "Execution node"
+msgstr "Execution node"
+
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26
msgid "Exit Without Saving"
@@ -3144,7 +3224,7 @@ msgstr "Exit Without Saving"
msgid "Expand"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:104
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "Expand all rows"
@@ -3166,15 +3246,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "Expected at least one of client_email, project_id or private_key to be present in the file."
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "Expires"
@@ -3186,13 +3266,12 @@ msgstr "Expires on"
msgid "Expires on UTC"
msgstr "Expires on UTC"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "Expires on {0}"
-#: components/JobList/JobListItem.js:287
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: components/JobList/JobListItem.js:306
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "Explanation"
@@ -3200,35 +3279,39 @@ msgstr "Explanation"
msgid "External Secret Management System"
msgstr "External Secret Management System"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "Extra variables"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:42
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
-#: screens/Project/ProjectList/ProjectListItem.js:73
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
+#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "FINISHED:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "Fact Storage"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: 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 "Fact storage: 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/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:69
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "Facts"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3253,15 +3336,16 @@ msgstr "Failed hosts"
msgid "Failed jobs"
msgstr "Failed jobs"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "Failed to approve one or more workflow approval."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "Failed to approve workflow approval."
-#: components/ResourceAccessList/ResourceAccessList.js:237
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "Failed to assign roles properly"
@@ -3271,60 +3355,65 @@ msgid "Failed to associate role"
msgstr "Failed to associate role"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:299
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "Failed to associate."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:109
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "Failed to cancel Inventory Source Sync"
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:219
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "Failed to cancel Project Sync"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "Failed to cancel one or more jobs."
-#: components/JobList/JobListItem.js:107
-#: screens/Job/JobDetail/JobDetail.js:493
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr "Failed to cancel one or more workflow approval."
+
+#: components/JobList/JobListItem.js:114
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "Failed to cancel {0}"
-#: screens/Credential/CredentialList/CredentialListItem.js:85
+#: screens/Credential/CredentialList/CredentialListItem.js:88
msgid "Failed to copy credential."
msgstr "Failed to copy credential."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:104
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:112
msgid "Failed to copy execution environment"
msgstr "Failed to copy execution environment"
-#: screens/Inventory/InventoryList/InventoryListItem.js:158
+#: screens/Inventory/InventoryList/InventoryListItem.js:162
msgid "Failed to copy inventory."
msgstr "Failed to copy inventory."
-#: screens/Project/ProjectList/ProjectListItem.js:257
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "Failed to copy project."
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "Failed to copy template."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "Failed to delete application."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "Failed to delete credential."
@@ -3332,24 +3421,24 @@ msgstr "Failed to delete credential."
msgid "Failed to delete group {0}."
msgstr "Failed to delete group {0}."
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "Failed to delete host."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "Failed to delete inventory source {name}."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:152
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "Failed to delete inventory."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "Failed to delete job template."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "Failed to delete notification."
@@ -3361,11 +3450,11 @@ msgstr "Failed to delete one or more applications."
msgid "Failed to delete one or more credential types."
msgstr "Failed to delete one or more credential types."
-#: screens/Credential/CredentialList/CredentialList.js:197
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "Failed to delete one or more credentials."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:218
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:233
msgid "Failed to delete one or more execution environments"
msgstr "Failed to delete one or more execution environments"
@@ -3373,32 +3462,32 @@ msgstr "Failed to delete one or more execution environments"
msgid "Failed to delete one or more groups."
msgstr "Failed to delete one or more groups."
-#: screens/Host/HostList/HostList.js:225
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "Failed to delete one or more hosts."
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:239
msgid "Failed to delete one or more instance groups."
msgstr "Failed to delete one or more instance groups."
-#: screens/Inventory/InventoryList/InventoryList.js:272
+#: screens/Inventory/InventoryList/InventoryList.js:288
msgid "Failed to delete one or more inventories."
msgstr "Failed to delete one or more inventories."
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "Failed to delete one or more inventory sources."
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:182
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "Failed to delete one or more job templates."
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "Failed to delete one or more jobs."
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:223
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:236
msgid "Failed to delete one or more notification template."
msgstr "Failed to delete one or more notification template."
@@ -3406,7 +3495,7 @@ msgstr "Failed to delete one or more notification template."
msgid "Failed to delete one or more organizations."
msgstr "Failed to delete one or more organizations."
-#: screens/Project/ProjectList/ProjectList.js:278
+#: screens/Project/ProjectList/ProjectList.js:294
msgid "Failed to delete one or more projects."
msgstr "Failed to delete one or more projects."
@@ -3418,7 +3507,7 @@ msgstr "Failed to delete one or more schedules."
msgid "Failed to delete one or more teams."
msgstr "Failed to delete one or more teams."
-#: components/TemplateList/TemplateList.js:284
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "Failed to delete one or more templates."
@@ -3426,7 +3515,7 @@ msgstr "Failed to delete one or more templates."
msgid "Failed to delete one or more tokens."
msgstr "Failed to delete one or more tokens."
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "Failed to delete one or more user tokens."
@@ -3434,19 +3523,19 @@ msgstr "Failed to delete one or more user tokens."
msgid "Failed to delete one or more users."
msgstr "Failed to delete one or more users."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "Failed to delete one or more workflow approval."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "Failed to delete organization."
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "Failed to delete project."
-#: components/ResourceAccessList/ResourceAccessList.js:248
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "Failed to delete role"
@@ -3455,11 +3544,11 @@ msgstr "Failed to delete role"
msgid "Failed to delete role."
msgstr "Failed to delete role."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "Failed to delete schedule."
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "Failed to delete smart inventory."
@@ -3471,11 +3560,11 @@ msgstr "Failed to delete team."
msgid "Failed to delete user."
msgstr "Failed to delete user."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "Failed to delete workflow approval."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "Failed to delete workflow job template."
@@ -3484,11 +3573,11 @@ msgstr "Failed to delete workflow job template."
msgid "Failed to delete {name}."
msgstr "Failed to delete {name}."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "Failed to deny one or more workflow approval."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "Failed to deny workflow approval."
@@ -3498,13 +3587,13 @@ msgstr "Failed to deny workflow approval."
msgid "Failed to disassociate one or more groups."
msgstr "Failed to disassociate one or more groups."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "Failed to disassociate one or more hosts."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:301
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "Failed to disassociate one or more instances."
@@ -3512,15 +3601,15 @@ msgstr "Failed to disassociate one or more instances."
msgid "Failed to disassociate one or more teams."
msgstr "Failed to disassociate one or more teams."
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
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."
-#: screens/Project/ProjectList/ProjectList.js:290
+#: screens/Project/ProjectList/ProjectList.js:306
msgid "Failed to fetch the updated project data."
msgstr "Failed to fetch the updated project data."
-#: components/AdHocCommands/AdHocCommands.js:118
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3538,7 +3627,7 @@ msgstr "Failed to retrieve full node resource object."
msgid "Failed to retrieve node credentials."
msgstr "Failed to retrieve node credentials."
-#: screens/InstanceGroup/Instances/InstanceList.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "Failed to run a health check on one or more instances."
@@ -3551,11 +3640,11 @@ msgstr "Failed to send test notification."
msgid "Failed to sync inventory source."
msgstr "Failed to sync inventory source."
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "Failed to sync project."
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "Failed to sync some or all inventory sources."
@@ -3575,9 +3664,9 @@ msgstr "Failed to toggle notification."
msgid "Failed to toggle schedule."
msgstr "Failed to toggle schedule."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "Failed to update capacity adjustment."
@@ -3586,7 +3675,7 @@ msgstr "Failed to update capacity adjustment."
msgid "Failed to update survey."
msgstr "Failed to update survey."
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "Failed to user token."
@@ -3595,17 +3684,17 @@ msgstr "Failed to user token."
msgid "Failure"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "False"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "February"
@@ -3617,7 +3706,7 @@ msgstr "Field contains value."
msgid "Field ends with value."
msgstr "Field ends with value."
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:76
msgid "Field for passing a custom Kubernetes or OpenShift Pod specification."
msgstr "Field for passing a custom Kubernetes or OpenShift Pod specification."
@@ -3629,11 +3718,11 @@ msgstr "Field matches the given regular expression."
msgid "Field starts with value."
msgstr "Field starts with value."
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "Fifth"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "File Difference"
@@ -3645,28 +3734,28 @@ msgstr "File upload rejected. Please select a single .json file."
msgid "File, directory or script"
msgstr "File, directory or script"
-#: components/Search/Search.js:180
-#: components/Search/Search.js:204
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "Filter By {name}"
-#: components/JobList/JobList.js:244
-#: components/JobList/JobListItem.js:93
+#: components/JobList/JobList.js:248
+#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "Finish Time"
-#: screens/Job/JobDetail/JobDetail.js:116
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "Finished"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr ""
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:134
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3675,16 +3764,17 @@ msgstr ""
msgid "First Name"
msgstr "First Name"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "First Run"
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "First name"
-#: components/Search/AdvancedSearch.js:224
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "First, select a key"
@@ -3692,27 +3782,32 @@ msgstr "First, select a key"
msgid "Fit the graph to the available screen size"
msgstr "Fit the graph to the available screen size"
+#: screens/TopologyView/Header.js:75
+#: screens/TopologyView/Header.js:78
+msgid "Fit to screen"
+msgstr "Fit to screen"
+
#: screens/Template/Survey/SurveyQuestionForm.js:94
msgid "Float"
msgstr "Float"
-#: screens/Job/JobOutput/JobOutputSearch.js:181
+#: screens/Job/JobOutput/JobOutputSearch.js:184
msgid "Follow"
msgstr "Follow"
#: screens/Template/shared/JobTemplateForm.js:253
-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."
+#~ 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.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
msgid ""
"For job templates, select run to execute the playbook.\n"
"Select check to only check playbook syntax, test environment setup,\n"
@@ -3722,37 +3817,43 @@ msgstr ""
"Select check to only check playbook syntax, test environment setup,\n"
"and report problems without executing the playbook."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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."
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "For more information, refer to the"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "Forks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "Fourth"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "Frequency Details"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "Frequency did not match an expected value"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "Fri"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "Friday"
@@ -3764,7 +3865,7 @@ msgstr "Fuzzy search on id, name or description fields."
msgid "Fuzzy search on name field."
msgstr "Fuzzy search on name field."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Galaxy Credentials"
@@ -3773,7 +3874,7 @@ msgstr "Galaxy Credentials"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Galaxy credentials must be owned by an Organization."
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "Gathering Facts"
@@ -3788,13 +3889,14 @@ msgstr "Get subscriptions"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
-#: screens/Project/ProjectList/ProjectList.js:184
+#: screens/Job/JobDetail/JobDetail.js:74
+#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3832,8 +3934,8 @@ msgstr "GitHub Team"
msgid "GitHub settings"
msgstr "GitHub settings"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
@@ -3841,12 +3943,12 @@ msgstr "GitLab"
#~ msgid "Global Default Execution Environment"
#~ msgstr "Global Default Execution Environment"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "Globally Available"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "Globally available execution environment can not be reassigned to a specific Organization"
@@ -3879,16 +3981,16 @@ msgid "Google OAuth2"
msgstr "Google OAuth2"
#: components/NotificationList/NotificationList.js:194
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Grafana API key"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "Grafana URL"
@@ -3900,11 +4002,11 @@ msgstr "Greater than comparison."
msgid "Greater than or equal to comparison."
msgstr "Greater than or equal to comparison."
-#: components/Lookup/HostFilterLookup.js:92
+#: components/Lookup/HostFilterLookup.js:102
msgid "Group"
msgstr "Group"
-#: screens/Inventory/Inventories.js:76
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "Group details"
@@ -3912,27 +4014,27 @@ msgstr "Group details"
msgid "Group type"
msgstr "Group type"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:29
#: screens/Inventory/Inventories.js:72
-#: screens/Inventory/Inventory.js:64
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
-#: screens/Inventory/InventoryList/InventoryListItem.js:123
+#: screens/Inventory/InventoryList/InventoryListItem.js:127
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:251
#: util/getRelatedResourceDeleteDetails.js:118
msgid "Groups"
msgstr "Groups"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "HTTP Headers"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "HTTP Method"
@@ -3940,10 +4042,11 @@ msgstr "HTTP Method"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "Health Check"
+#~ msgid "Health Check"
+#~ msgstr "Health Check"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
+#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "Healthy"
@@ -3961,7 +4064,7 @@ msgid "Hide description"
msgstr "Hide description"
#: components/NotificationList/NotificationList.js:195
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:151
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136
msgid "Hipchat"
msgstr "Hipchat"
@@ -3969,23 +4072,27 @@ msgstr "Hipchat"
msgid "Hop"
msgstr "Hop"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/TopologyView/Legend.js:103
+msgid "Hop node"
+msgstr "Hop node"
+
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "Host"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "Host Async Failure"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "Host Async OK"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "Host Config Key"
@@ -3993,61 +4100,61 @@ msgstr "Host Config Key"
msgid "Host Count"
msgstr "Host Count"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "Host Details"
-#: screens/Job/JobOutput/JobOutputSearch.js:100
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "Host Failed"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "Host Failure"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "Host Filter"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "Host Name"
-#: screens/Job/JobOutput/JobOutputSearch.js:102
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "Host OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "Host Polling"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "Host Retry"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "Host Skipped"
-#: screens/Job/JobOutput/JobOutputSearch.js:101
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "Host Started"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "Host Unreachable"
-#: screens/Inventory/Inventories.js:67
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "Host details"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "Host details modal"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "Host not found."
@@ -4056,23 +4163,23 @@ msgstr "Host not found."
msgid "Host status information for this job is unavailable."
msgstr "Host status information for this job is unavailable."
-#: routeConfig.js:84
-#: screens/ActivityStream/ActivityStream.js:168
+#: routeConfig.js:85
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
-#: screens/Host/HostList/HostList.js:135
-#: screens/Host/HostList/HostList.js:182
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:63
-#: screens/Inventory/Inventories.js:77
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/HostList/HostList.js:143
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
-#: screens/Inventory/SmartInventory.js:67
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:63
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
+#: screens/Inventory/SmartInventory.js:68
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
#: util/getRelatedResourceDeleteDetails.js:122
msgid "Hosts"
@@ -4095,78 +4202,86 @@ msgstr "Hosts imported"
msgid "Hosts remaining"
msgstr "Hosts remaining"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "Hour"
-#: screens/InstanceGroup/Instances/InstanceList.js:199
+#: screens/TopologyView/Legend.js:92
+msgid "Hy"
+msgstr "Hy"
+
+#: screens/InstanceGroup/Instances/InstanceList.js:198
#: screens/Instances/InstanceList/InstanceList.js:118
msgid "Hybrid"
msgstr "Hybrid"
-#: components/JobList/JobList.js:196
-#: components/Lookup/HostFilterLookup.js:88
+#: screens/TopologyView/Legend.js:95
+msgid "Hybrid node"
+msgstr "Hybrid node"
+
+#: components/JobList/JobList.js:200
+#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "ID of the Dashboard"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "ID of the Panel"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "ID of the dashboard (optional)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "ID of the panel (optional)"
#: components/NotificationList/NotificationList.js:196
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:152
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC Nick"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "IRC Server Address"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "IRC Server Port"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC nick"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "IRC server address"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "IRC server password"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "IRC server port"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "Icon URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
msgid ""
"If checked, all variables for child groups\n"
"and hosts will be removed and replaced by those found\n"
@@ -4176,7 +4291,7 @@ msgstr ""
"and hosts will be removed and replaced by those found\n"
"on the external source."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4195,14 +4310,18 @@ msgstr ""
"default group for the inventory."
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr ""
-"If enabled, run this playbook as an\n"
-"administrator."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr "If enabled, run this playbook as an administrator."
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4213,42 +4332,54 @@ msgstr ""
"--diff mode."
#: screens/Template/shared/JobTemplateForm.js:498
-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."
+#~ 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."
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+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."
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
#: screens/Template/shared/JobTemplateForm.js:604
-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."
+#~ 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."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+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/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "If enabled, simultaneous runs of this workflow job template will be allowed."
#: screens/Template/shared/JobTemplateForm.js:611
-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."
+#~ 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."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
@@ -4268,8 +4399,8 @@ msgstr ""
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.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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"
@@ -4277,19 +4408,19 @@ 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"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:127
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:67
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "Image"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "Including File"
@@ -4311,17 +4442,17 @@ msgstr ""
msgid "Initiated By"
msgstr "Initiated By"
-#: screens/ActivityStream/ActivityStream.js:245
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "Initiated by"
-#: screens/ActivityStream/ActivityStream.js:235
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "Initiated by (username)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "Injector configuration"
@@ -4331,20 +4462,24 @@ msgstr "Injector configuration"
msgid "Input configuration"
msgstr "Input configuration"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr "Input schema which defines a set of ordered fields for that type."
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Insights Credential"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Insights for Ansible Automation Platform dashboard"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Insights for Ansible Automation Platform dashboard"
-#: components/Lookup/HostFilterLookup.js:113
+#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
msgstr "Insights system ID"
@@ -4352,44 +4487,44 @@ msgstr "Insights system ID"
msgid "Instance"
msgstr "Instance"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "Instance Filters"
-#: screens/Job/JobDetail/JobDetail.js:278
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "Instance Group"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
-#: routeConfig.js:131
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:166
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:268
-#: screens/InstanceGroup/InstanceGroups.js:37
-#: screens/InstanceGroup/InstanceGroups.js:47
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
+#: routeConfig.js:132
+#: screens/ActivityStream/ActivityStream.js:205
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:105
+#: components/Lookup/HostFilterLookup.js:115
msgid "Instance ID"
msgstr "Instance ID"
-#: screens/InstanceGroup/InstanceGroups.js:54
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "Instance details"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:64
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:58
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:69
msgid "Instance group"
msgstr "Instance group"
-#: screens/InstanceGroup/InstanceGroup.js:104
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "Instance group not found."
@@ -4398,21 +4533,21 @@ msgstr "Instance group not found."
msgid "Instance group used capacity"
msgstr "Instance group used capacity"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "Instance groups"
-#: routeConfig.js:136
-#: screens/ActivityStream/ActivityStream.js:195
-#: screens/InstanceGroup/InstanceGroup.js:86
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288
+#: routeConfig.js:137
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:52
-#: screens/InstanceGroup/Instances/InstanceList.js:182
-#: screens/InstanceGroup/Instances/InstanceList.js:278
+#: screens/InstanceGroup/InstanceGroups.js:60
+#: screens/InstanceGroup/Instances/InstanceList.js:181
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "Instances"
@@ -4440,59 +4575,62 @@ msgstr "Invalid link target. Unable to link to children or ancestor nodes. Graph
msgid "Invalid time format"
msgstr "Invalid time format"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
-#: routeConfig.js:79
-#: screens/ActivityStream/ActivityStream.js:165
+#: routeConfig.js:80
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
-#: screens/Inventory/InventoryList/InventoryList.js:159
-#: screens/Inventory/InventoryList/InventoryList.js:222
+#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/InventoryList/InventoryList.js:174
+#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
#: util/getRelatedResourceDeleteDetails.js:269
msgid "Inventories"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:149
+#: screens/Inventory/InventoryList/InventoryListItem.js:153
msgid "Inventories with sources cannot be copied"
msgstr "Inventories with sources cannot be copied"
#: components/HostForm/HostForm.js:48
-#: components/JobList/JobListItem.js:204
+#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:376
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:283
-#: components/TemplateList/TemplateListItem.js:293
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:162
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
-#: screens/Inventory/InventoryList/InventoryList.js:171
-#: screens/Inventory/InventoryList/InventoryListItem.js:113
+#: screens/Inventory/InventoryList/InventoryList.js:186
+#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:104
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "Inventory"
@@ -4500,47 +4638,47 @@ msgstr "Inventory"
msgid "Inventory (Name)"
msgstr "Inventory (Name)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "Inventory File"
-#: components/Lookup/HostFilterLookup.js:96
+#: components/Lookup/HostFilterLookup.js:106
msgid "Inventory ID"
msgstr "Inventory ID"
-#: screens/Job/JobDetail/JobDetail.js:182
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "Inventory Source"
-#: screens/Job/JobDetail/JobDetail.js:205
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "Inventory Source Project"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "Inventory Source Sync"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "Inventory Source Sync Error"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "Inventory Sources"
-#: components/JobList/JobList.js:208
-#: components/JobList/JobListItem.js:37
+#: components/JobList/JobList.js:212
+#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "Inventory Sync"
-#: screens/Inventory/InventoryList/InventoryList.js:168
+#: screens/Inventory/InventoryList/InventoryList.js:183
msgid "Inventory Type"
msgstr "Inventory Type"
@@ -4548,12 +4686,16 @@ msgstr "Inventory Type"
msgid "Inventory Update"
msgstr "Inventory Update"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventoryList/InventoryList.js:121
+msgid "Inventory copied successfully"
+msgstr "Inventory copied successfully"
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "Inventory file"
-#: screens/Inventory/Inventory.js:91
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "Inventory not found."
@@ -4565,23 +4707,23 @@ msgstr "Inventory sync"
msgid "Inventory sync failures"
msgstr "Inventory sync failures"
-#: components/DataListToolbar/DataListToolbar.js:109
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "Is expanded"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "Is not expanded"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "Item Failed"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "Item OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "Item Skipped"
@@ -4595,49 +4737,50 @@ msgid "Items per page"
msgstr ""
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:35
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
-#: screens/Project/ProjectList/ProjectListItem.js:66
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
+#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "JOB ID:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "JSON tab"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "January"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "Job"
+#~ msgid "Job"
+#~ msgstr "Job"
-#: components/JobList/JobListItem.js:105
-#: screens/Job/JobDetail/JobDetail.js:491
-#: screens/Job/JobOutput/JobOutput.js:800
-#: screens/Job/JobOutput/JobOutput.js:801
+#: components/JobList/JobListItem.js:112
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "Job Cancel Error"
-#: screens/Job/JobDetail/JobDetail.js:513
-#: screens/Job/JobOutput/JobOutput.js:789
-#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "Job Delete Error"
-#: screens/Job/JobDetail/JobDetail.js:97
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "Job ID"
@@ -4645,45 +4788,45 @@ msgstr "Job ID"
msgid "Job Runs"
msgstr "Job Runs"
-#: components/JobList/JobListItem.js:294
-#: screens/Job/JobDetail/JobDetail.js:293
+#: components/JobList/JobListItem.js:313
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "Job Slice"
-#: components/JobList/JobListItem.js:299
-#: screens/Job/JobDetail/JobDetail.js:300
+#: components/JobList/JobListItem.js:318
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "Job Slice Parent"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "Job Slicing"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "Job Status"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:372
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "Job Tags"
-#: components/JobList/JobListItem.js:172
-#: components/TemplateList/TemplateList.js:202
+#: components/JobList/JobListItem.js:191
+#: components/TemplateList/TemplateList.js:217
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:123
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "Job Template"
@@ -4691,8 +4834,13 @@ msgstr "Job Template"
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.js:115
-#: screens/Project/Projects.js:31
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
+#: screens/Inventory/SmartInventory.js:74
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4707,15 +4855,15 @@ msgstr "Job Templates with a missing inventory or project cannot be selected whe
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.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:157
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "Job Type"
@@ -4727,35 +4875,35 @@ msgstr "Job status"
msgid "Job status graph tab"
msgstr "Job status graph tab"
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:117
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:149
msgid "Job templates"
msgstr "Job templates"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
-#: routeConfig.js:38
-#: screens/ActivityStream/ActivityStream.js:142
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
+#: routeConfig.js:39
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
-#: screens/InstanceGroup/ContainerGroup.js:80
-#: screens/InstanceGroup/InstanceGroup.js:91
-#: screens/InstanceGroup/InstanceGroups.js:55
-#: screens/InstanceGroup/InstanceGroups.js:60
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:68
-#: screens/Inventory/Inventory.js:68
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
+#: screens/InstanceGroup/ContainerGroup.js:71
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
-#: screens/Inventory/SmartInventory.js:69
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Inventory/SmartInventory.js:70
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr ""
@@ -4763,27 +4911,27 @@ msgstr ""
msgid "Jobs settings"
msgstr "Jobs settings"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "July"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "June"
-#: components/Search/AdvancedSearch.js:162
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "Key"
-#: components/Search/AdvancedSearch.js:153
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "Key select"
-#: components/Search/AdvancedSearch.js:156
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "Key typeahead"
-#: screens/ActivityStream/ActivityStream.js:230
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "Keyword"
@@ -4840,41 +4988,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/TemplateList/TemplateList.js:219
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
+#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "Label"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "Label Name"
-#: components/JobList/JobListItem.js:264
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/JobList/JobListItem.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:344
-#: screens/Job/JobDetail/JobDetail.js:352
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "Labels"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "Last Health Check"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "Last Job Status"
@@ -4882,36 +5034,36 @@ msgstr "Last Job Status"
msgid "Last Login"
msgstr "Last Login"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:314
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:100
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:117
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:431
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr ""
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:138
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4920,32 +5072,32 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.js:229
-#: components/TemplateList/TemplateListItem.js:180
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "Last Ran"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "Last Run"
-#: components/Lookup/HostFilterLookup.js:109
+#: components/Lookup/HostFilterLookup.js:119
msgid "Last job"
msgstr "Last job"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:295
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "Last modified"
-#: components/ResourceAccessList/ResourceAccessList.js:184
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "Last name"
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "Last used"
@@ -4953,19 +5105,18 @@ msgstr "Last used"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "Launch"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "Launch Management Job"
+#~ msgid "Launch Management Job"
+#~ msgstr "Launch Management Job"
-#: components/TemplateList/TemplateListItem.js:200
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:85
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "Launch Template"
@@ -4978,7 +5129,7 @@ msgstr "Launch Template"
msgid "Launch management job"
msgstr "Launch management job"
-#: components/TemplateList/TemplateListItem.js:208
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "Launch template"
@@ -4991,24 +5142,30 @@ msgstr "Launch workflow"
msgid "Launch | {0}"
msgstr "Launch | {0}"
-#: components/DetailList/LaunchedByDetail.js:83
+#: components/DetailList/LaunchedByDetail.js:54
msgid "Launched By"
msgstr "Launched By"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "Launched By (Username)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "Learn more about Insights for Ansible Automation Platform"
+msgid "Learn more about Automation Analytics"
+msgstr "Learn more about Automation Analytics"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "Learn more about Insights for Ansible Automation Platform"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
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.js:86
#: screens/Metrics/LineChart.js:120
+#: screens/TopologyView/Header.js:102
+#: screens/TopologyView/Legend.js:65
msgid "Legend"
msgstr "Legend"
@@ -5020,19 +5177,20 @@ msgstr "Less than comparison."
msgid "Less than or equal to comparison."
msgstr "Less than or equal to comparison."
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:257
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "Limit"
@@ -5048,15 +5206,15 @@ msgstr "Loading"
msgid "Local"
msgstr "Local"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "Local Time Zone"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "Local time zone"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "Log In"
@@ -5074,8 +5232,8 @@ msgstr "Logging settings"
msgid "Logout"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:340
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/HostFilterLookup.js:366
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "Lookup modal"
@@ -5091,45 +5249,45 @@ msgstr "Lookup type"
msgid "Lookup typeahead"
msgstr "Lookup typeahead"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:33
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
-#: screens/Project/ProjectList/ProjectListItem.js:64
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
+#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "MOST RECENT SYNC"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:308
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "Machine Credential"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "Managed"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:169
msgid "Managed nodes"
msgstr "Managed nodes"
-#: components/JobList/JobList.js:211
-#: components/JobList/JobListItem.js:40
+#: components/JobList/JobList.js:215
+#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:73
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "Management Job"
-#: routeConfig.js:126
+#: routeConfig.js:127
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:84
msgid "Management Jobs"
msgstr ""
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "Management job"
@@ -5138,11 +5296,11 @@ msgstr "Management job"
msgid "Management job launch error"
msgstr "Management job launch error"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "Management job not found."
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "Management jobs"
@@ -5150,40 +5308,41 @@ msgstr "Management jobs"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
-#: screens/Project/ProjectList/ProjectList.js:183
-#: screens/Project/ProjectList/ProjectListItem.js:206
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
+#: screens/Project/ProjectList/ProjectList.js:197
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "Manual"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "March"
#: components/NotificationList/NotificationList.js:197
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "Max Hosts"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "Maximum"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "Maximum length"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "May"
@@ -5208,15 +5367,16 @@ msgstr "Metrics"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "Minimum"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "Minimum length"
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:49
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
@@ -5224,7 +5384,8 @@ msgstr ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:59
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
msgid ""
"Minimum percentage of all instances that will be automatically\n"
"assigned to this group when new instances come online."
@@ -5232,7 +5393,7 @@ msgstr ""
"Minimum percentage of all instances that will be automatically\n"
"assigned to this group when new instances come online."
-#: components/Schedule/shared/ScheduleForm.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "Minute"
@@ -5253,23 +5414,23 @@ msgid "Miscellaneous System settings"
msgstr "Miscellaneous System settings"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "Missing"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "Missing resource"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5280,30 +5441,30 @@ msgstr ""
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
-#: components/TemplateList/TemplateList.js:215
+#: components/TemplateList/TemplateList.js:230
#: 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.js:139
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
#: screens/Host/HostGroups/HostGroupsList.js:168
-#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:161
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:203
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:178
#: screens/Inventory/InventoryHosts/InventoryHostList.js:132
-#: screens/Inventory/InventoryList/InventoryList.js:188
+#: screens/Inventory/InventoryList/InventoryList.js:203
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:189
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:98
#: screens/Organization/OrganizationList/OrganizationList.js:135
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131
-#: screens/Project/ProjectList/ProjectList.js:195
+#: screens/Project/ProjectList/ProjectList.js:209
#: screens/Team/TeamList/TeamList.js:134
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:167
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:108
@@ -5311,39 +5472,39 @@ msgstr ""
msgid "Modified By (Username)"
msgstr "Modified By (Username)"
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:77
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:85
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:151
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:77
msgid "Modified by (username)"
msgstr "Modified by (username)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "Module"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "Module Arguments"
-#: screens/Job/JobDetail/JobDetail.js:418
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "Module Name"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "Mon"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "Monday"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "Month"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "More information"
@@ -5351,13 +5512,13 @@ msgstr "More information"
msgid "More information for"
msgstr "More information for"
-#: screens/Template/Survey/SurveyReorderModal.js:152
-#: screens/Template/Survey/SurveyReorderModal.js:153
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "Multi-Select"
-#: screens/Template/Survey/SurveyReorderModal.js:136
-#: screens/Template/Survey/SurveyReorderModal.js:137
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "Multiple Choice"
@@ -5369,7 +5530,7 @@ msgstr "Multiple Choice (multiple select)"
msgid "Multiple Choice (single select)"
msgstr "Multiple Choice (single select)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "Multiple Choice Options"
@@ -5377,14 +5538,14 @@ msgstr "Multiple Choice Options"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
-#: components/JobList/JobListItem.js:79
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
+#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
#: components/LaunchPrompt/steps/InventoryStep.js:84
@@ -5395,8 +5556,8 @@ msgstr "Multiple Choice Options"
#: components/Lookup/CredentialLookup.js:203
#: components/Lookup/ExecutionEnvironmentLookup.js:172
#: components/Lookup/ExecutionEnvironmentLookup.js:179
-#: components/Lookup/HostFilterLookup.js:83
-#: components/Lookup/HostFilterLookup.js:375
+#: components/Lookup/HostFilterLookup.js:93
+#: components/Lookup/HostFilterLookup.js:421
#: components/Lookup/HostListItem.js:8
#: components/Lookup/InstanceGroupsLookup.js:103
#: components/Lookup/InstanceGroupsLookup.js:114
@@ -5415,16 +5576,18 @@ msgstr "Multiple Choice Options"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
-#: components/TemplateList/TemplateList.js:190
-#: components/TemplateList/TemplateList.js:227
-#: components/TemplateList/TemplateListItem.js:137
+#: components/Schedule/shared/ScheduleForm.js:107
+#: components/TemplateList/TemplateList.js:205
+#: components/TemplateList/TemplateList.js:242
+#: components/TemplateList/TemplateListItem.js:142
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49
@@ -5437,19 +5600,19 @@ msgstr "Multiple Choice Options"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:126
-#: screens/Credential/CredentialList/CredentialList.js:145
-#: screens/Credential/CredentialList/CredentialListItem.js:55
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
+#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:91
@@ -5458,34 +5621,33 @@ msgstr "Multiple Choice Options"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:61
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
#: screens/Host/HostGroups/HostGroupsList.js:176
-#: screens/Host/HostList/HostList.js:140
-#: screens/Host/HostList/HostList.js:161
+#: screens/Host/HostList/HostList.js:148
+#: screens/Host/HostList/HostList.js:169
#: screens/Host/HostList/HostListItem.js:50
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:41
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:250
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:284
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:49
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:208
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
-#: screens/InstanceGroup/Instances/InstanceList.js:189
-#: screens/InstanceGroup/Instances/InstanceList.js:205
-#: screens/InstanceGroup/Instances/InstanceList.js:254
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:188
+#: screens/InstanceGroup/Instances/InstanceList.js:204
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:46
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:25
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
#: screens/Instances/InstanceList/InstanceList.js:108
#: screens/Instances/InstanceList/InstanceList.js:125
#: screens/Instances/InstanceList/InstanceList.js:150
@@ -5505,22 +5667,22 @@ msgstr "Multiple Choice Options"
#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33
#: screens/Inventory/InventoryHosts/InventoryHostList.js:119
#: screens/Inventory/InventoryHosts/InventoryHostList.js:138
-#: screens/Inventory/InventoryList/InventoryList.js:163
-#: screens/Inventory/InventoryList/InventoryList.js:194
-#: screens/Inventory/InventoryList/InventoryList.js:203
-#: screens/Inventory/InventoryList/InventoryListItem.js:88
+#: screens/Inventory/InventoryList/InventoryList.js:178
+#: screens/Inventory/InventoryList/InventoryList.js:209
+#: screens/Inventory/InventoryList/InventoryList.js:218
+#: screens/Inventory/InventoryList/InventoryListItem.js:92
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:69
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:68
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:102
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:32
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5528,8 +5690,8 @@ msgstr "Multiple Choice Options"
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:106
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:193
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:122
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:178
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:112
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:91
@@ -5543,43 +5705,40 @@ msgstr "Multiple Choice Options"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:122
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:156
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:56
-#: screens/Project/ProjectList/ProjectList.js:171
-#: screens/Project/ProjectList/ProjectList.js:207
-#: screens/Project/ProjectList/ProjectListItem.js:174
-#: screens/Project/shared/ProjectForm.js:169
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:145
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
+#: screens/Project/ProjectList/ProjectList.js:185
+#: screens/Project/ProjectList/ProjectList.js:221
+#: screens/Project/ProjectList/ProjectListItem.js:179
+#: screens/Project/shared/ProjectForm.js:170
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:208
-#: screens/Template/Survey/SurveyReorderModal.js:208
-#: screens/Template/Survey/SurveyReorderModal.js:228
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5587,24 +5746,24 @@ msgstr "Multiple Choice Options"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr ""
#: screens/InstanceGroup/shared/InstanceGroupForm.js:21
-msgid "Name cannot be changed on this Instance Group"
-msgstr "Name cannot be changed on this Instance Group"
+#~ msgid "Name cannot be changed on this Instance Group"
+#~ msgstr "Name cannot be changed on this Instance Group"
#: components/AppContainer/AppContainer.js:95
msgid "Navigation"
msgstr "Navigation"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "Never"
@@ -5612,22 +5771,21 @@ msgstr "Never"
msgid "Never Updated"
msgstr "Never Updated"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "Never expires"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "New"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5636,27 +5794,27 @@ msgstr "New"
msgid "Next"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "Next Run"
-#: components/Search/Search.js:214
+#: components/Search/Search.js:232
msgid "No"
msgstr "No"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "No Hosts Matched"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "No Hosts Remaining"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "No JSON Available"
@@ -5665,53 +5823,57 @@ msgid "No Jobs"
msgstr "No Jobs"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "No Standard Error Available"
+#~ msgid "No Standard Error Available"
+#~ msgstr "No Standard Error Available"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "No Standard Out Available"
+#~ msgid "No Standard Out Available"
+#~ msgstr "No Standard Out Available"
-#: screens/Inventory/InventoryList/InventoryListItem.js:68
+#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
msgstr "No inventory sync failures."
-#: components/ContentEmpty/ContentEmpty.js:16
+#: components/ContentEmpty/ContentEmpty.js:20
msgid "No items found."
msgstr "No items found."
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "No job data available"
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/EmptyOutput.js:25
+msgid "No output found for this job."
+msgstr "No output found for this job."
+
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "No result found"
+#: components/LabelSelect/LabelSelect.js:102
#: components/LaunchPrompt/steps/SurveyStep.js:134
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
-#: components/Search/AdvancedSearch.js:114
-#: components/Search/AdvancedSearch.js:167
+#: components/Search/AdvancedSearch.js:151
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:137
-#: components/Search/Search.js:184
-#: components/Search/Search.js:208
-#: screens/ActivityStream/ActivityStream.js:134
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:156
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/LabelSelect.js:102
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "No results found"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:115
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:136
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:137
msgid "No subscriptions found"
msgstr "No subscriptions found"
@@ -5724,22 +5886,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "No {pluralizedItemName} Found"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "Node Alias"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
-#: screens/InstanceGroup/Instances/InstanceList.js:194
-#: screens/InstanceGroup/Instances/InstanceList.js:256
-#: screens/InstanceGroup/Instances/InstanceList.js:288
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
+#: screens/InstanceGroup/Instances/InstanceList.js:193
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "Node Type"
@@ -5747,15 +5909,19 @@ msgstr "Node Type"
msgid "Node type"
msgstr "Node type"
+#: screens/TopologyView/Legend.js:68
+msgid "Node types"
+msgstr "Node types"
+
#: components/Workflow/WorkflowNodeHelp.js:123
msgid "None"
msgstr "None"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "None (Run Once)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "None (run once)"
@@ -5774,11 +5940,11 @@ msgstr "Not Found"
msgid "Not configured"
msgstr "Not configured"
-#: screens/Inventory/InventoryList/InventoryListItem.js:71
+#: screens/Inventory/InventoryList/InventoryListItem.js:75
msgid "Not configured for inventory sync."
msgstr "Not configured for inventory sync."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5809,11 +5975,11 @@ msgstr "Note: The order in which these are selected sets the execution precedenc
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
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.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5829,7 +5995,7 @@ msgstr ""
"read only protocol (git://) does not use username or\n"
"password information."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "Notification Color"
@@ -5838,11 +6004,11 @@ msgstr "Notification Color"
msgid "Notification Template not found."
msgstr "Notification Template not found."
-#: screens/ActivityStream/ActivityStream.js:190
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:132
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:186
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/ActivityStream/ActivityStream.js:198
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr ""
@@ -5851,48 +6017,48 @@ msgstr ""
msgid "Notification Type"
msgstr "Notification Type"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "Notification color"
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:245
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:193
msgid "Notification sent successfully"
msgstr "Notification sent successfully"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "Notification test failed."
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197
msgid "Notification timed out"
msgstr "Notification timed out"
#: components/NotificationList/NotificationList.js:190
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131
msgid "Notification type"
msgstr "Notification type"
#: components/NotificationList/NotificationList.js:177
-#: routeConfig.js:121
-#: screens/Inventory/Inventories.js:91
+#: routeConfig.js:122
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:109
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "November"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5900,69 +6066,77 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "Occurrences"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "October"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "Off"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "On"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "On Failure"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "On Success"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "On date"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "On days"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "Only Group By"
@@ -5970,12 +6144,21 @@ msgstr "Only Group By"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "Option Details"
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Inventory/shared/Inventory.helptext.js:25
+msgid ""
+"Optional labels that describe this inventory,\n"
+"such as 'dev' or 'test'. Labels can be used to group and filter\n"
+"inventories and completed jobs."
+msgstr ""
+"Optional labels that describe this inventory,\n"
+"such as 'dev' or 'test'. Labels can be used to group and filter\n"
+"inventories and completed jobs."
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
msgid ""
"Optional labels that describe this job template,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
@@ -5985,23 +6168,29 @@ msgstr ""
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"job templates and completed jobs."
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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."
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
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."
#: components/NotificationList/NotificationList.js:220
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:64
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "Options"
-#: screens/Template/Survey/SurveyReorderModal.js:207
-#: screens/Template/Survey/SurveyReorderModal.js:207
-#: screens/Template/Survey/SurveyReorderModal.js:223
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "Order"
@@ -6009,39 +6198,40 @@ msgstr "Order"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:270
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:153
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:68
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
#: screens/Inventory/InventoryDetail/InventoryDetail.js:74
-#: screens/Inventory/InventoryList/InventoryList.js:176
-#: screens/Inventory/InventoryList/InventoryList.js:206
-#: screens/Inventory/InventoryList/InventoryListItem.js:115
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventoryList/InventoryList.js:191
+#: screens/Inventory/InventoryList/InventoryList.js:221
+#: screens/Inventory/InventoryList/InventoryListItem.js:119
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:274
-#: screens/Project/ProjectList/ProjectListItem.js:285
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -6056,19 +6246,19 @@ msgstr "Organization (Name)"
msgid "Organization Name"
msgstr "Organization Name"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "Organization not found."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
-#: routeConfig.js:95
-#: screens/ActivityStream/ActivityStream.js:173
+#: routeConfig.js:96
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -6083,47 +6273,52 @@ msgstr "Other prompts"
msgid "Out of compliance"
msgstr "Out of compliance"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "Output"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr "Output tab"
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "Overwrite"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "Overwrite local groups and hosts from remote inventory source"
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "Overwrite local variables from remote inventory source"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "Overwrite variables"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "POST"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PUT"
#: components/NotificationList/NotificationList.js:198
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Pagerduty Subdomain"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Pagerduty subdomain"
@@ -6147,27 +6342,32 @@ msgstr "Pan Right"
msgid "Pan Up"
msgstr "Pan Up"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Pass extra command line changes. There are two ansible command line parameters:"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"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"
-"documentation for example syntax."
+#~ 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"
+#~ "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"
+#~ "documentation for example syntax."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
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."
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 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 documentation for example syntax."
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6192,8 +6392,8 @@ msgstr "Past two weeks"
msgid "Past week"
msgstr "Past week"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "Pending"
@@ -6202,15 +6402,15 @@ msgstr "Pending"
msgid "Pending Workflow Approvals"
msgstr "Pending Workflow Approvals"
-#: screens/Inventory/InventoryList/InventoryListItem.js:124
+#: screens/Inventory/InventoryList/InventoryListItem.js:128
msgid "Pending delete"
msgstr "Pending delete"
-#: components/Lookup/HostFilterLookup.js:343
+#: components/Lookup/HostFilterLookup.js:369
msgid "Perform a search to define a host filter"
msgstr "Perform a search to define a host filter"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "Personal Access Token"
@@ -6219,7 +6419,7 @@ msgstr "Personal Access Token"
msgid "Personal access token"
msgstr "Personal access token"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "Play"
@@ -6227,45 +6427,46 @@ msgstr "Play"
msgid "Play Count"
msgstr "Play Count"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "Play Started"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:254
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
-#: components/JobList/JobListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:71
+#: components/JobList/JobListItem.js:44
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Playbook Check"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Playbook Complete"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Playbook Directory"
-#: components/JobList/JobList.js:209
-#: components/JobList/JobListItem.js:38
+#: components/JobList/JobList.js:213
+#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Playbook Run"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Playbook Started"
-#: components/TemplateList/TemplateList.js:207
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:159
@@ -6304,52 +6505,60 @@ msgstr "Please click the Start button to begin."
msgid "Please enter a valid URL"
msgstr "Please enter a valid URL"
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "Please enter a value."
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "Please log in"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "Please run a job to populate this list."
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "Please select a day number between 1 and 31."
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "Please select an Inventory or check the Prompt on Launch option"
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
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."
-#: components/Lookup/HostFilterLookup.js:332
+#: components/Lookup/HostFilterLookup.js:358
msgid "Please select an organization before editing the host filter"
msgstr "Please select an organization before editing the host filter"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/Job/JobOutput/EmptyOutput.js:20
+msgid "Please try another search using the filter above"
+msgstr "Please try another search using the filter above"
+
+#: screens/TopologyView/ContentLoading.js:40
+msgid "Please wait until the topology view is populated..."
+msgstr "Please wait until the topology view is populated..."
+
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Pod spec override"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "Policy Type"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:69
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:44
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:63
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:26
msgid "Policy instance minimum"
msgstr "Policy instance minimum"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:54
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "Policy instance percentage"
@@ -6359,25 +6568,39 @@ msgid "Populate field from an external secret management system"
msgstr "Populate field from an external secret management system"
#: components/Lookup/HostFilterLookup.js:322
+#~ msgid ""
+#~ "Populate the hosts for this inventory by using a search\n"
+#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+#~ "Refer to the documentation for further syntax and\n"
+#~ "examples. 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 documentation for further syntax and\n"
+#~ "examples. Refer to the Ansible Tower documentation for further syntax and\n"
+#~ "examples."
+
+#: components/Lookup/HostFilterLookup.js:348
msgid ""
"Populate the hosts for this inventory by using a search\n"
-"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+"filter. Example: ansible_facts__ansible_distribution:\"RedHat\".\n"
"Refer to the documentation for further syntax and\n"
"examples. 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"
+"filter. Example: ansible_facts__ansible_distribution:\"RedHat\".\n"
"Refer to the documentation for further syntax and\n"
"examples. Refer to the Ansible Tower documentation for further syntax and\n"
"examples."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "Port"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
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"
@@ -6389,21 +6612,21 @@ msgstr ""
"Press 'Enter' to add more answer choices. One answer\n"
"choice per line."
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Press Enter to edit. Press ESC to stop editing."
#: components/SelectedList/DraggableSelectedList.js:85
-#~ msgid ""
-#~ "Press space or enter to begin dragging,\n"
-#~ "and use the arrow keys to navigate up or down.\n"
-#~ "Press enter to confirm the drag, or any other key to\n"
-#~ "cancel the drag operation."
-#~ msgstr ""
-#~ "Press space or enter to begin dragging,\n"
-#~ "and use the arrow keys to navigate up or down.\n"
-#~ "Press enter to confirm the drag, or any other key to\n"
-#~ "cancel the drag operation."
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
@@ -6414,9 +6637,9 @@ msgstr "Preview"
msgid "Private key passphrase"
msgstr "Private key passphrase"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "Privilege Escalation"
@@ -6424,39 +6647,44 @@ msgstr "Privilege Escalation"
msgid "Privilege escalation password"
msgstr "Privilege escalation password"
-#: components/JobList/JobListItem.js:220
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr "Privilege escalation: If enabled, run this playbook as an administrator."
+
+#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:298
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:222
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "Project"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "Project Base Path"
#: screens/Job/JobDetail/JobDetail.js:227
-msgid "Project Status"
-msgstr "Project Status"
+#~ msgid "Project Status"
+#~ msgstr "Project Status"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "Project Sync"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:216
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "Project Sync Error"
@@ -6464,7 +6692,19 @@ msgstr "Project Sync Error"
msgid "Project Update"
msgstr "Project Update"
-#: screens/Project/Project.js:137
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr "Project Update Status"
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr "Project checkout results"
+
+#: screens/Project/ProjectList/ProjectList.js:132
+msgid "Project copied successfully"
+msgstr "Project copied successfully"
+
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "Project not found."
@@ -6473,13 +6713,13 @@ msgid "Project sync failures"
msgstr "Project sync failures"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
-#: routeConfig.js:74
-#: screens/ActivityStream/ActivityStream.js:162
+#: routeConfig.js:75
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
-#: screens/Project/ProjectList/ProjectList.js:166
-#: screens/Project/ProjectList/ProjectList.js:235
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/ProjectList/ProjectList.js:180
+#: screens/Project/ProjectList/ProjectList.js:249
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6490,18 +6730,18 @@ msgstr ""
msgid "Promote Child Groups and Hosts"
msgstr "Promote Child Groups and Hosts"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "Prompt"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "Prompt Overrides"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "Prompt on launch"
@@ -6509,13 +6749,12 @@ msgstr "Prompt on launch"
msgid "Prompt | {0}"
msgstr "Prompt | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "Prompted Values"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6527,7 +6766,7 @@ msgstr ""
"playbook. Multiple patterns are allowed. Refer to Ansible\n"
"documentation for more information and examples on patterns."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6539,11 +6778,16 @@ msgstr ""
"patterns are allowed. Refer to Ansible documentation for more\n"
"information and examples on patterns."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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."
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
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."
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6564,32 +6808,40 @@ msgstr ""
"retrieving renewal or expanded subscriptions."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "Provisioning Callback URL"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "Provisioning Callback details"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "Provisioning Callbacks"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Pull"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "Question"
@@ -6601,14 +6853,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "RADIUS settings"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "Read"
@@ -6628,10 +6880,9 @@ msgstr "Recent Templates"
msgid "Recent Templates list tab"
msgstr "Recent Templates list tab"
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:103
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:158
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "Recent jobs"
@@ -6650,7 +6901,8 @@ msgstr "Red Hat Ansible Automation Platform"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
-#: screens/Project/ProjectList/ProjectList.js:187
+#: screens/Job/JobDetail/JobDetail.js:76
+#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
msgstr "Red Hat Insights"
@@ -6671,13 +6923,14 @@ msgstr "Red Hat subscription manifest"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "Redirect URIs"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "Redirect uris"
+#~ msgid "Redirect uris"
+#~ msgstr "Redirect uris"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6687,17 +6940,22 @@ msgstr "Redirecting to dashboard"
msgid "Redirecting to subscription detail"
msgstr "Redirecting to subscription detail"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "Refer to the"
#: screens/Template/shared/JobTemplateForm.js:433
-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."
+#~ 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."
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+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.js:77
msgid "Refresh Token"
@@ -6707,33 +6965,34 @@ msgstr "Refresh Token"
msgid "Refresh Token Expiration"
msgstr "Refresh Token Expiration"
-#: screens/Project/ProjectList/ProjectListItem.js:128
+#: screens/Project/ProjectList/ProjectListItem.js:132
msgid "Refresh for revision"
msgstr "Refresh for revision"
-#: screens/Project/ProjectList/ProjectListItem.js:130
+#: screens/Project/ProjectList/ProjectListItem.js:134
msgid "Refresh project revision"
msgstr "Refresh project revision"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "Regions"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "Registry credential"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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."
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "Related Groups"
-#: components/Search/AdvancedSearch.js:188
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "Related Keys"
@@ -6746,15 +7005,15 @@ msgstr "Related search type"
msgid "Related search type typeahead"
msgstr "Related search type typeahead"
-#: components/JobList/JobListItem.js:139
+#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:472
-#: screens/Job/JobDetail/JobDetail.js:480
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "Relaunch"
-#: components/JobList/JobListItem.js:119
+#: components/JobList/JobListItem.js:126
#: screens/Job/JobOutput/shared/OutputToolbar.js:147
msgid "Relaunch Job"
msgstr "Relaunch Job"
@@ -6772,7 +7031,7 @@ msgstr "Relaunch failed hosts"
msgid "Relaunch on"
msgstr "Relaunch on"
-#: components/JobList/JobListItem.js:118
+#: components/JobList/JobListItem.js:125
#: screens/Job/JobOutput/shared/OutputToolbar.js:146
msgid "Relaunch using host parameters"
msgstr "Relaunch using host parameters"
@@ -6780,12 +7039,13 @@ msgstr "Relaunch using host parameters"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
-#: screens/Project/ProjectList/ProjectList.js:186
+#: screens/Job/JobDetail/JobDetail.js:77
+#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "Remote Archive"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6808,10 +7068,14 @@ msgstr "Remove Link"
msgid "Remove Node {nodeName}"
msgstr "Remove Node {nodeName}"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "Remove any local modifications prior to performing an update."
+#: components/Search/AdvancedSearch.js:206
+msgid "Remove the current search related to ansible facts to enable another search using this key."
+msgstr "Remove the current search related to ansible facts to enable another search using this key."
+
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:14
msgid "Remove {0} Access"
msgstr ""
@@ -6825,18 +7089,18 @@ msgid "Removing this link will orphan the rest of the branch and cause it to be
msgstr "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch."
#: components/SelectedList/DraggableSelectedList.js:83
-#~ msgid "Reorder"
-#~ msgstr "Reorder"
+msgid "Reorder"
+msgstr "Reorder"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:271
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "Repeat Frequency"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "Replace"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "Replace field with new value"
@@ -6846,12 +7110,17 @@ msgid "Request subscription"
msgstr "Request subscription"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "Required"
+#: screens/TopologyView/Header.js:87
+#: screens/TopologyView/Header.js:90
+msgid "Reset zoom"
+msgstr "Reset zoom"
+
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6861,13 +7130,12 @@ msgstr "Resource Name"
msgid "Resource deleted"
msgstr "Resource deleted"
-#: routeConfig.js:60
-#: screens/ActivityStream/ActivityStream.js:151
+#: routeConfig.js:61
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:144
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:61
+#: components/TemplateList/TemplateListItem.js:149
msgid "Resources are missing from this template."
msgstr "Resources are missing from this template."
@@ -6875,7 +7143,7 @@ msgstr "Resources are missing from this template."
msgid "Restore initial value."
msgstr "Restore initial value."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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'"
@@ -6883,32 +7151,32 @@ 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'"
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:774
-#: screens/Job/JobOutput/JobOutput.js:777
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "Return"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:128
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129
msgid "Return to subscription management."
msgstr "Return to subscription management."
-#: components/Search/AdvancedSearch.js:134
+#: components/Search/AdvancedSearch.js:171
msgid "Returns results that have values other than this one as well as other filters."
msgstr "Returns results that have values other than this one as well as other filters."
-#: components/Search/AdvancedSearch.js:121
+#: components/Search/AdvancedSearch.js:158
msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected."
msgstr "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected."
-#: components/Search/AdvancedSearch.js:127
+#: components/Search/AdvancedSearch.js:164
msgid "Returns results that satisfy this one or any other filters."
msgstr "Returns results that satisfy this one or any other filters."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6923,7 +7191,7 @@ msgstr "Revert all"
msgid "Revert all to default"
msgstr "Revert all to default"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "Revert field to previously saved value"
@@ -6935,18 +7203,18 @@ msgstr "Revert settings"
msgid "Revert to factory default."
msgstr "Revert to factory default."
-#: screens/Job/JobDetail/JobDetail.js:249
-#: screens/Project/ProjectList/ProjectList.js:210
-#: screens/Project/ProjectList/ProjectListItem.js:208
+#: screens/Job/JobDetail/JobDetail.js:309
+#: screens/Project/ProjectList/ProjectList.js:224
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "Revision"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "Revision #"
#: components/NotificationList/NotificationList.js:199
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140
msgid "Rocket.Chat"
msgstr "Rocket.Chat"
@@ -6961,56 +7229,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "Role"
-#: components/ResourceAccessList/ResourceAccessList.js:145
-#: components/ResourceAccessList/ResourceAccessList.js:158
-#: components/ResourceAccessList/ResourceAccessList.js:185
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "Roles"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "Run"
-#: components/AdHocCommands/AdHocCommands.js:137
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
#: components/AdHocCommands/AdHocCommands.js:141
-#: components/AdHocCommands/AdHocCommands.js:147
-#: components/AdHocCommands/AdHocCommands.js:151
-#: screens/Job/JobDetail/JobDetail.js:72
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "Run Command"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "Run a health check on the instance"
-#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "Run ad hoc command"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "Run command"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "Run every"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "Run frequency"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr "Run health check"
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "Run on"
@@ -7018,25 +7293,30 @@ msgstr "Run on"
msgid "Run type"
msgstr "Run type"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
-#: components/TemplateList/TemplateListItem.js:113
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
+#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "Running"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "Running Handlers"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:286
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "Running Jobs"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr "Running health check"
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "Running jobs"
@@ -7062,7 +7342,7 @@ msgstr "SOCIAL"
msgid "SSH password"
msgstr "SSH password"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "SSL Connection"
@@ -7072,36 +7352,36 @@ msgid "START"
msgstr "START"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:38
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
-#: screens/Project/ProjectList/ProjectListItem.js:69
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
+#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "STATUS:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "Sat"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "Saturday"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:113
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:195
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -7122,12 +7402,21 @@ msgstr "Save link changes"
msgid "Save successful!"
msgstr "Save successful!"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: components/JobList/JobListItem.js:181
+#: components/JobList/JobListItem.js:187
+msgid "Schedule"
+msgstr "Schedule"
+
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "Schedule Details"
-#: screens/Inventory/Inventories.js:90
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr "Schedule Rules"
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "Schedule details"
@@ -7139,7 +7428,7 @@ msgstr "Schedule is active"
msgid "Schedule is inactive"
msgstr "Schedule is inactive"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "Schedule is missing rrule"
@@ -7149,31 +7438,35 @@ msgstr "Schedule not found."
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
-#: routeConfig.js:43
-#: screens/ActivityStream/ActivityStream.js:145
-#: screens/Inventory/Inventories.js:87
+#: routeConfig.js:44
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:121
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "Scope"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr "Scope for the token's access"
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "Scroll first"
@@ -7190,44 +7483,48 @@ msgstr "Scroll next"
msgid "Scroll previous"
msgstr "Scroll previous"
-#: components/Lookup/HostFilterLookup.js:263
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/HostFilterLookup.js:289
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:149
+#: screens/Job/JobOutput/JobOutputSearch.js:152
msgid "Search is disabled while the job is running"
msgstr "Search is disabled while the job is running"
-#: components/Search/AdvancedSearch.js:233
-#: components/Search/Search.js:241
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "Search submit button"
-#: components/Search/Search.js:230
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Lookup/HostFilterLookup.js:397
+msgid "Searching by ansible_facts requires special syntax. Refer to the"
+msgstr "Searching by ansible_facts requires special syntax. Refer to the"
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "Second"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "Seconds"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "See errors on the left"
-#: components/JobList/JobListItem.js:77
-#: components/Lookup/HostFilterLookup.js:353
-#: components/Lookup/Lookup.js:193
+#: components/JobList/JobListItem.js:84
+#: components/Lookup/HostFilterLookup.js:379
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
msgstr ""
@@ -7241,7 +7538,7 @@ msgstr "Select Credential Type"
msgid "Select Groups"
msgstr "Select Groups"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "Select Hosts"
@@ -7249,7 +7546,7 @@ msgstr "Select Hosts"
msgid "Select Input"
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:283
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "Select Instances"
@@ -7257,15 +7554,15 @@ msgstr "Select Instances"
msgid "Select Items"
msgstr "Select Items"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "Select Items from List"
-#: screens/Template/shared/LabelSelect.js:99
+#: components/LabelSelect/LabelSelect.js:99
msgid "Select Labels"
msgstr "Select Labels"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "Select Roles to Apply"
@@ -7277,27 +7574,29 @@ msgstr "Select Teams"
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."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "Select a Node Type"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "Select a Resource Type"
#: screens/Template/shared/JobTemplateForm.js:334
-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."
+#~ 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."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js: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"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
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."
@@ -7317,16 +7616,16 @@ msgstr "Select a job to cancel"
msgid "Select a metric"
msgstr "Select a metric"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "Select a module"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Select a playbook"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "Select a project before editing the execution environment."
@@ -7335,8 +7634,8 @@ msgid "Select a question to delete"
msgstr "Select a question to delete"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "Select a row to approve"
+#~ msgid "Select a row to approve"
+#~ msgstr "Select a row to approve"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7344,61 +7643,63 @@ msgid "Select a row to delete"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "Select a row to deny"
+#~ msgid "Select a row to deny"
+#~ msgstr "Select a row to deny"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "Select a row to disassociate"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:87
msgid "Select a subscription"
msgstr "Select a subscription"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:54
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "Select a value for this field"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Select a webhook service."
-#: components/DataListToolbar/DataListToolbar.js:123
+#: components/DataListToolbar/DataListToolbar.js:121
+#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:121
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "Select an activity type"
@@ -7414,7 +7715,7 @@ msgstr "Select an instance and a metric to show chart"
msgid "Select an instance to run a health check."
msgstr "Select an instance to run a health check."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
@@ -7422,25 +7723,30 @@ msgstr "Select an inventory for the workflow. This inventory is applied to all w
msgid "Select an option"
msgstr "Select an option"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "Select an organization before editing the default execution environment."
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 for accessing 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."
+#~ msgid ""
+#~ "Select credentials for accessing 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 for accessing 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."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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 for accessing 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/Project.helptext.js:18
msgid ""
"Select from the list of directories found in\n"
"the Project Base Path. Together the base path and the playbook\n"
@@ -7450,10 +7756,14 @@ msgstr ""
"the Project Base Path. Together the base path and the playbook\n"
"directory provide the full path used to locate playbooks."
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:81
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr ""
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr "Select items to approve, deny, or cancel"
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7469,13 +7779,13 @@ msgstr "Select option(s)"
msgid "Select period"
msgstr "Select period"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:100
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "Select roles to apply"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "Select source path"
@@ -7497,12 +7807,17 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Select the Instance Groups for this Inventory to run on."
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr "Select the Instance Groups for this Job Template to run on."
#: screens/Template/shared/JobTemplateForm.js:513
#~ msgid ""
@@ -7517,8 +7832,8 @@ msgid "Select the Instance Groups for this Organization to run on."
msgstr ""
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
#: screens/User/shared/UserTokenForm.js:49
#~ msgid "Select the application that this token will belong to."
@@ -7528,12 +7843,11 @@ msgstr "Select the application that this token will belong to, or leave this fie
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."
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "Select the execution environment for this job template."
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
@@ -7541,74 +7855,85 @@ msgstr ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+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.js:107
-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."
+#~ 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."
#: components/HostForm/HostForm.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "Select the inventory that this host will belong to."
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "Select the playbook to be executed by this job."
#: screens/Template/shared/JobTemplateForm.js:300
-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."
+#~ 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."
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+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/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "Select your Ansible Automation Platform subscription to use."
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "Select {0}"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
-#: components/TemplateList/TemplateListItem.js:135
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:90
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
+#: components/TemplateList/TemplateListItem.js:140
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
-#: screens/Credential/CredentialList/CredentialListItem.js:53
+#: screens/Credential/CredentialList/CredentialListItem.js:56
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:65
#: screens/Host/HostGroups/HostGroupItem.js:26
#: screens/Host/HostList/HostListItem.js:48
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:59
#: screens/InstanceGroup/Instances/InstanceListItem.js:122
#: screens/Instances/InstanceList/InstanceListItem.js:126
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:42
-#: screens/Inventory/InventoryList/InventoryListItem.js:86
+#: screens/Inventory/InventoryList/InventoryListItem.js:90
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:37
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:110
#: screens/Organization/OrganizationList/OrganizationListItem.js:43
#: screens/Organization/shared/OrganizationForm.js:113
-#: screens/Project/ProjectList/ProjectListItem.js:172
+#: screens/Project/ProjectList/ProjectListItem.js:177
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:242
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr ""
@@ -7619,20 +7944,20 @@ msgstr ""
msgid "Selected Category"
msgstr "Selected Category"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "Selected date range must have at least 1 schedule occurrence."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "Sender Email"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "Sender e-mail"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "September"
@@ -7641,7 +7966,7 @@ msgid "Service account JSON file"
msgstr "Service account JSON file"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "Set a value for this field"
@@ -7653,7 +7978,7 @@ msgstr "Set how many days of data should be retained."
msgid "Set preferences for data collection, logos, and logins"
msgstr "Set preferences for data collection, logos, and logins"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "Set source path to"
@@ -7665,23 +7990,23 @@ msgstr "Set the instance enabled or disabled. If disabled, jobs will not be assi
#~ 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."
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "Set to Public or Confidential depending on how secure the client device is."
-#: components/Search/AdvancedSearch.js:112
+#: components/Search/AdvancedSearch.js:149
msgid "Set type"
msgstr "Set type"
-#: components/Search/AdvancedSearch.js:144
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "Set type disabled for related search field fuzzy searches"
-#: components/Search/AdvancedSearch.js:103
+#: components/Search/AdvancedSearch.js:140
msgid "Set type select"
msgstr "Set type select"
-#: components/Search/AdvancedSearch.js:106
+#: components/Search/AdvancedSearch.js:143
msgid "Set type typeahead"
msgstr "Set type typeahead"
@@ -7701,10 +8026,10 @@ msgstr "Setting matches factory default."
msgid "Setting name"
msgstr "Setting name"
-#: routeConfig.js:153
-#: routeConfig.js:157
-#: screens/ActivityStream/ActivityStream.js:212
-#: screens/ActivityStream/ActivityStream.js:214
+#: routeConfig.js:159
+#: routeConfig.js:163
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr ""
@@ -7713,12 +8038,12 @@ msgstr ""
msgid "Show"
msgstr "Show"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "Show Changes"
@@ -7726,8 +8051,8 @@ msgstr "Show Changes"
#~ msgid "Show all groups"
#~ msgstr "Show all groups"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "Show changes"
@@ -7744,77 +8069,77 @@ msgstr "Show less"
msgid "Show only root groups"
msgstr "Show only root groups"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Sign in with Azure AD"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "Sign in with GitHub"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "Sign in with GitHub Enterprise"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "Sign in with GitHub Enterprise Organizations"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "Sign in with GitHub Enterprise Teams"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "Sign in with GitHub Organizations"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "Sign in with GitHub Teams"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Sign in with Google"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "Sign in with SAML"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "Sign in with SAML {samlIDP}"
-#: components/Search/Search.js:129
-#: components/Search/Search.js:130
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "Simple key select"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:396
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "Skip Tags"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the 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 the documentation for details on the usage\n"
-"of tags."
+#~ 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 the 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 the documentation for details on the usage\n"
+#~ "of tags."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7826,46 +8151,51 @@ msgstr ""
"Use commas to separate multiple tags. Refer to Ansible Tower\n"
"documentation for details on the usage of tags."
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the 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 the documentation for details on the usage of tags."
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "Skipped"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "Skipped'"
#: components/NotificationList/NotificationList.js:200
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141
msgid "Slack"
msgstr "Slack"
-#: screens/Host/HostList/SmartInventoryButton.js:31
-#: screens/Host/HostList/SmartInventoryButton.js:40
-#: screens/Host/HostList/SmartInventoryButton.js:44
-#: screens/Inventory/InventoryList/InventoryList.js:172
-#: screens/Inventory/InventoryList/InventoryListItem.js:113
+#: screens/Host/HostList/SmartInventoryButton.js:39
+#: screens/Host/HostList/SmartInventoryButton.js:48
+#: screens/Host/HostList/SmartInventoryButton.js:52
+#: screens/Inventory/InventoryList/InventoryList.js:187
+#: screens/Inventory/InventoryList/InventoryListItem.js:117
msgid "Smart Inventory"
msgstr "Smart Inventory"
-#: screens/Inventory/SmartInventory.js:92
+#: screens/Inventory/SmartInventory.js:94
msgid "Smart Inventory not found."
msgstr "Smart Inventory not found."
-#: components/Lookup/HostFilterLookup.js:318
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: components/Lookup/HostFilterLookup.js:344
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "Smart host filter"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "Smart inventory"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "Some of the previous step(s) have errors"
-#: screens/Host/HostList/SmartInventoryButton.js:12
+#: screens/Host/HostList/SmartInventoryButton.js:17
msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter."
msgstr "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter."
@@ -7886,55 +8216,58 @@ msgstr ""
#~ msgid "Sort question order"
#~ msgstr "Sort question order"
-#: components/JobList/JobListItem.js:163
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/JobList/JobListItem.js:170
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:194
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "Source"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "Source Control Branch"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "Source Control Branch/Tag/Commit"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "Source Control Credential"
#: screens/Project/shared/ProjectForm.js:214
-msgid "Source Control Credential Type"
-msgstr "Source Control Credential Type"
+#~ msgid "Source Control Credential Type"
+#~ msgstr "Source Control Credential Type"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "Source Control Refspec"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "Source Control Revision"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "Source Control Type"
@@ -7942,34 +8275,34 @@ msgstr "Source Control Type"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
-#: screens/Project/ProjectList/ProjectList.js:191
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
+#: screens/Project/ProjectList/ProjectList.js:205
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "Source Control URL"
-#: components/JobList/JobList.js:207
-#: components/JobList/JobListItem.js:36
+#: components/JobList/JobList.js:211
+#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "Source Control Update"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "Source Phone Number"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "Source Variables"
-#: components/JobList/JobListItem.js:194
-#: screens/Job/JobDetail/JobDetail.js:147
+#: components/JobList/JobListItem.js:213
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "Source Workflow Job"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "Source control branch"
@@ -7977,12 +8310,12 @@ msgstr "Source control branch"
msgid "Source details"
msgstr "Source details"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "Source phone number"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "Source variables"
@@ -7990,12 +8323,12 @@ msgstr "Source variables"
msgid "Sourced from a project"
msgstr "Sourced from a project"
-#: screens/Inventory/Inventories.js:82
-#: screens/Inventory/Inventory.js:66
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "Sources"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
@@ -8003,7 +8336,7 @@ msgstr ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
@@ -8012,28 +8345,28 @@ msgstr ""
"color code (example: #3af or #789abc)."
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "Specify a scope for the token's access"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "Specify a scope for the token's access"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "Specify the conditions under which this node should be executed"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "Standard Error"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "Standard Out"
+#~ msgid "Standard Out"
+#~ msgstr "Standard Out"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "Standard error tab"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "Standard out tab"
+#~ msgid "Standard out tab"
+#~ msgstr "Standard out tab"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -8042,8 +8375,8 @@ msgstr "Standard out tab"
msgid "Start"
msgstr "Start"
-#: components/JobList/JobList.js:243
-#: components/JobList/JobListItem.js:92
+#: components/JobList/JobList.js:247
+#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "Start Time"
@@ -8051,16 +8384,16 @@ msgstr "Start Time"
msgid "Start date"
msgstr "Start date"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "Start date/time"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "Start message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "Start message body"
@@ -8077,39 +8410,44 @@ msgstr "Start sync source"
msgid "Start time"
msgstr "Start time"
-#: screens/Job/JobDetail/JobDetail.js:110
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "Started"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
-#: components/JobList/JobListItem.js:88
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
+#: components/JobList/JobListItem.js:95
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
-#: screens/Inventory/InventoryList/InventoryList.js:204
-#: screens/Inventory/InventoryList/InventoryListItem.js:97
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:85
-#: screens/Job/JobDetail/JobDetail.js:101
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Inventory/InventoryList/InventoryList.js:219
+#: screens/Inventory/InventoryList/InventoryListItem.js:101
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:194
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
-#: screens/Project/ProjectList/ProjectList.js:208
-#: screens/Project/ProjectList/ProjectListItem.js:192
+#: screens/Project/ProjectList/ProjectList.js:222
+#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/TopologyView/Tooltip.js:98
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "Status"
+#: screens/TopologyView/Legend.js:107
+msgid "Status types"
+msgstr "Status types"
+
#: screens/Job/JobOutput/JobOutputSearch.js:92
msgid "Stdout"
msgstr "Stdout"
@@ -8120,7 +8458,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "Submit"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -8155,7 +8493,7 @@ msgstr "Subscription Management"
msgid "Subscription manifest"
msgstr "Subscription manifest"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:84
msgid "Subscription selection modal"
msgstr "Subscription selection modal"
@@ -8167,36 +8505,37 @@ msgstr "Subscription settings"
msgid "Subscription type"
msgstr "Subscription type"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:141
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:142
msgid "Subscriptions table"
msgstr "Subscriptions table"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
-#: screens/Project/ProjectList/ProjectList.js:185
+#: screens/Job/JobDetail/JobDetail.js:75
+#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "Success"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "Success message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "Success message body"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8206,24 +8545,24 @@ msgstr ""
msgid "Successful jobs"
msgstr "Successful jobs"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
-#: screens/Project/ProjectList/ProjectListItem.js:93
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "Successfully copied to clipboard!"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "Sun"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "Sunday"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "Survey"
@@ -8243,7 +8582,7 @@ msgstr "Survey Enabled"
#~ msgid "Survey Preview"
#~ msgstr "Survey Preview"
-#: screens/Template/Survey/SurveyReorderModal.js:181
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "Survey Question Order"
@@ -8251,7 +8590,7 @@ msgstr "Survey Question Order"
msgid "Survey Toggle"
msgstr "Survey Toggle"
-#: screens/Template/Survey/SurveyReorderModal.js:182
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "Survey preview modal"
@@ -8259,16 +8598,16 @@ msgstr "Survey preview modal"
#~ msgid "Survey questions"
#~ msgstr "Survey questions"
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:118
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "Sync"
-#: screens/Project/ProjectList/ProjectListItem.js:225
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "Sync Project"
@@ -8282,16 +8621,16 @@ msgstr "Sync all"
msgid "Sync all sources"
msgstr "Sync all sources"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "Sync error"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
-#: screens/Project/ProjectList/ProjectListItem.js:105
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
+#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "Sync for revision"
-#: screens/Project/ProjectList/ProjectListItem.js:118
+#: screens/Project/ProjectList/ProjectListItem.js:122
msgid "Syncing"
msgstr "Syncing"
@@ -8332,25 +8671,25 @@ msgid "TACACS+ settings"
msgstr "TACACS+ settings"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "Tabs"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the 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 the documentation for details on\n"
-"the usage of tags."
+#~ 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 the 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 the documentation for details on\n"
+#~ "the usage of tags."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8362,24 +8701,29 @@ msgstr ""
"Use commas to separate multiple tags. Refer to Ansible Tower\n"
"documentation for details on the usage of tags."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the 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 the documentation for details on the usage of tags."
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "Tags for the Annotation"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "Tags for the annotation (optional)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "Target URL"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "Task"
@@ -8387,7 +8731,7 @@ msgstr "Task"
msgid "Task Count"
msgstr "Task Count"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "Task Started"
@@ -8404,24 +8748,24 @@ msgstr ""
msgid "Team Roles"
msgstr ""
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "Team not found."
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
-#: routeConfig.js:105
-#: screens/ActivityStream/ActivityStream.js:179
-#: screens/Organization/Organization.js:124
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
+#: routeConfig.js:106
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8429,22 +8773,27 @@ msgstr "Team not found."
msgid "Teams"
msgstr ""
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "Template"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
+#: components/TemplateList/TemplateList.js:133
+msgid "Template copied successfully"
+msgstr "Template copied successfully"
+
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "Template not found."
-#: components/TemplateList/TemplateList.js:185
-#: components/TemplateList/TemplateList.js:247
-#: routeConfig.js:64
-#: screens/ActivityStream/ActivityStream.js:156
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: components/TemplateList/TemplateList.js:200
+#: components/TemplateList/TemplateList.js:263
+#: routeConfig.js:65
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8453,7 +8802,7 @@ msgstr ""
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "Test"
@@ -8474,11 +8823,11 @@ msgid "Test passed"
msgstr "Test passed"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:171
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "Text"
-#: screens/Template/Survey/SurveyReorderModal.js:125
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "Text Area"
@@ -8486,11 +8835,11 @@ msgstr "Text Area"
msgid "Textarea"
msgstr "Textarea"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "That value was not found. Please enter or select a valid value."
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "The"
@@ -8502,11 +8851,15 @@ msgstr "The"
#~ 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/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "The Grant type the user must use to acquire tokens for this application"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr "The Instance Groups for this Organization to run on."
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8517,16 +8870,25 @@ msgstr ""
"from 1 to 120 seconds."
#: screens/Template/shared/JobTemplateForm.js:489
-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."
+#~ 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."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+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/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
@@ -8536,25 +8898,42 @@ msgstr ""
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+
+#: screens/Project/shared/Project.helptext.js:93
msgid ""
"The first fetches all references. The second\n"
"fetches the Github pull request number 62, in this example\n"
@@ -8564,10 +8943,38 @@ msgstr ""
"fetches the Github pull request number 62, in this example\n"
"the branch needs to be \"pull/62/head\"."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr "The following selected items are complete and cannot be acted on: {completedItems}"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "The full image location, including the container registry, image name, and version tag."
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+"The inventory file\n"
+"to be synced by this source. You can select from\n"
+"the dropdown or enter a file within the input."
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr "The inventory that this host belongs to."
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8578,43 +8985,56 @@ msgstr ""
"Value defaults to 0 which means no limit. Refer to the Ansible\n"
"documentation for more details."
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
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"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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"
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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"
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "The page you requested could not be found."
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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"
-#: screens/Project/ProjectList/ProjectListItem.js:116
+#: screens/Project/ProjectList/ProjectListItem.js:120
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "The project is currently syncing and the revision will be available after the sync is complete."
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
-#: screens/Project/ProjectList/ProjectListItem.js:103
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "The project must be synced before a revision is available."
-#: screens/Project/ProjectList/ProjectListItem.js:126
+#: screens/Project/ProjectList/ProjectListItem.js:130
msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision."
msgstr "The project revision is currently out of date. Please refresh to fetch the most recent revision."
@@ -8623,7 +9043,11 @@ msgstr "The project revision is currently out of date. Please refresh to fetch
msgid "The resource associated with this node has been deleted."
msgstr "The resource associated with this node has been deleted."
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Job/JobOutput/EmptyOutput.js:19
+msgid "The search filter did not produce any results…"
+msgstr "The search filter did not produce any results…"
+
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8669,7 +9093,7 @@ msgstr ""
msgid "There must be a value in at least one input"
msgstr "There must be a value in at least one input"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "There was a problem logging in. Please try again."
@@ -8681,7 +9105,7 @@ msgstr "There was an error loading this content. Please reload the page."
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."
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "There was an error saving the workflow."
@@ -8689,27 +9113,32 @@ msgstr "There was an error saving the workflow."
#~ msgid "These are the modules that {0} supports running commands against."
#~ msgstr "These are the modules that {0} supports running commands against."
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "These are the modules that {brandName} supports running commands against."
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
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."
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "These arguments are used with the specified module."
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
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"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "Third"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "This Project needs to be updated"
@@ -8731,15 +9160,15 @@ msgstr "This action will disassociate the following role from {0}:"
msgid "This action will disassociate the following:"
msgstr "This action will disassociate the following:"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
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.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
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.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
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"
@@ -8747,11 +9176,21 @@ msgstr "This credential type is currently being used by some credentials and can
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
+"Automation Analytics."
msgstr ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
+"Automation Analytics."
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
@@ -8763,7 +9202,7 @@ msgstr ""
"future releases of the Tower Software and help\n"
"streamline customer experience and success."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
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?"
@@ -8772,17 +9211,17 @@ msgstr "This execution environment is currently being used by other resources. A
msgid "This feature is deprecated and will be removed in a future release."
msgstr "This feature is deprecated and will be removed in a future release."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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."
#: components/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "This field is must not be blank"
+#~ msgid "This field is must not be blank"
+#~ msgstr "This field is must not be blank"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "This field is must not be blank."
+#~ msgid "This field is must not be blank."
+#~ msgstr "This field is must not be blank."
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8813,7 +9252,7 @@ msgstr "This field must be a number and have a value less than {max}"
msgid "This field must be a regular expression"
msgstr "This field must be a regular expression"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "This field must be an integer"
@@ -8826,12 +9265,13 @@ msgstr "This field must be at least {0} characters"
msgid "This field must be at least {min} characters"
msgstr "This field must be at least {min} characters"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "This field must be greater than 0"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8839,6 +9279,10 @@ msgstr "This field must be greater than 0"
msgid "This field must not be blank"
msgstr ""
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr "This field must not be blank."
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "This field must not contain spaces"
@@ -8855,7 +9299,7 @@ msgstr ""
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "This field will be retrieved from an external secret management system using the specified credential."
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:128
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
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?"
@@ -8863,15 +9307,15 @@ msgstr "This instance group is currently being by other resources. Are you sure
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:138
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
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.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
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.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "This is the only time the client secret will be shown."
@@ -8879,19 +9323,19 @@ msgstr "This is the only time the client secret will be shown."
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."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
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.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
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.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
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/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "This project is currently on sync and cannot be clicked until sync process completed"
@@ -8911,6 +9355,18 @@ msgstr "This step contains errors"
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."
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr "This will cancel the workflow and no subsequent nodes will execute."
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr "This will continue the workflow"
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr "This will continue the workflow along failure and always paths."
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8923,27 +9379,27 @@ msgstr ""
msgid "This workflow does not have any nodes configured."
msgstr "This workflow does not have any nodes configured."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
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.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "Thu"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "Thursday"
-#: screens/ActivityStream/ActivityStream.js:241
-#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "Time"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8959,7 +9415,7 @@ msgstr ""
"considered current, and a new project update will be\n"
"performed."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8973,36 +9429,40 @@ msgstr ""
"Cache Timeout, it is not considered current, and a new\n"
"inventory sync will be performed."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "Timed out"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "Timeout"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "Timeout minutes"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "Timeout seconds"
+#: screens/Host/HostList/SmartInventoryButton.js:20
+msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
+msgstr "To create a smart inventory using ansible facts, go to the smart inventory screen."
+
#: screens/Template/Survey/SurveyReorderModal.js:182
#~ msgid "To reoder the survey questions drag and drop them in the desired location."
#~ msgstr "To reoder the survey questions drag and drop them in the desired location."
-#: screens/Template/Survey/SurveyReorderModal.js:184
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "To reorder the survey questions drag and drop them in the desired location."
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "Toggle Legend"
@@ -9010,12 +9470,12 @@ msgstr "Toggle Legend"
msgid "Toggle Password"
msgstr "Toggle Password"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "Toggle Tools"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "Toggle host"
@@ -9025,6 +9485,7 @@ msgstr "Toggle instance"
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82
+#: screens/TopologyView/Header.js:99
msgid "Toggle legend"
msgstr "Toggle legend"
@@ -9053,7 +9514,7 @@ msgstr "Toggle schedule"
msgid "Toggle tools"
msgstr "Toggle tools"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "Token"
@@ -9067,11 +9528,11 @@ msgstr "Token information"
msgid "Token not found."
msgstr "Token not found."
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -9082,32 +9543,42 @@ msgid "Tools"
msgstr "Tools"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "Top Pagination"
+#~ msgid "Top Pagination"
+#~ msgstr "Top Pagination"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287
+#: routeConfig.js:152
+#: screens/TopologyView/TopologyView.js:40
+msgid "Topology View"
+msgstr "Topology View"
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "Total Jobs"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "Total Nodes"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr "Total hosts"
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "Total jobs"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "Track submodules"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "Track submodules latest commit on branch"
@@ -9116,76 +9587,76 @@ msgstr "Track submodules latest commit on branch"
msgid "Trial"
msgstr "Trial"
-#: components/JobList/JobListItem.js:299
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:301
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: components/JobList/JobListItem.js:318
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "True"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "Tue"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "Tuesday"
#: components/NotificationList/NotificationList.js:201
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
-#: components/JobList/JobListItem.js:91
+#: components/JobList/JobList.js:246
+#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
-#: components/TemplateList/TemplateList.js:199
-#: components/TemplateList/TemplateList.js:228
-#: components/TemplateList/TemplateListItem.js:179
+#: components/TemplateList/TemplateList.js:214
+#: components/TemplateList/TemplateList.js:243
+#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:146
-#: screens/Credential/CredentialList/CredentialListItem.js:60
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
+#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:285
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:66
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
-#: screens/Inventory/InventoryList/InventoryList.js:205
-#: screens/Inventory/InventoryList/InventoryListItem.js:112
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:98
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:195
+#: screens/Inventory/InventoryList/InventoryList.js:220
+#: screens/Inventory/InventoryList/InventoryListItem.js:116
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:157
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:78
-#: screens/Project/ProjectList/ProjectList.js:180
-#: screens/Project/ProjectList/ProjectList.js:209
-#: screens/Project/ProjectList/ProjectListItem.js:205
+#: screens/Project/ProjectList/ProjectList.js:194
+#: screens/Project/ProjectList/ProjectList.js:223
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
#: screens/Template/Survey/SurveyList.js:103
#: screens/Template/Survey/SurveyListItem.js:60
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:93
+#: screens/TopologyView/Tooltip.js:92
#: screens/User/UserDetail/UserDetail.js:75
#: screens/User/UserRoles/UserRolesList.js:156
#: screens/User/UserRoles/UserRolesListItem.js:21
@@ -9194,7 +9665,7 @@ msgstr "Type"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "Type Details"
@@ -9214,11 +9685,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "Unable to change inventory on a host"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr "Unable to load last job update"
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "Unavailable"
@@ -9232,7 +9707,7 @@ msgstr "Unavailable"
msgid "Undo"
msgstr "Undo"
-#: screens/Job/JobOutput/JobOutputSearch.js:181
+#: screens/Job/JobOutput/JobOutputSearch.js:184
msgid "Unfollow"
msgstr "Unfollow"
@@ -9240,7 +9715,7 @@ msgstr "Unfollow"
msgid "Unlimited"
msgstr "Unlimited"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -9262,28 +9737,28 @@ msgstr "Unrecognized day string"
msgid "Unsaved changes modal"
msgstr "Unsaved changes modal"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "Update Revision on Launch"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "Update on launch"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "Update on project update"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "Update options"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "Update revision on job launch"
@@ -9295,7 +9770,7 @@ msgstr "Update revision on job launch"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "Update settings pertaining to Jobs within {brandName}"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Update webhook key"
@@ -9312,12 +9787,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations0> on the Red Hat Customer Portal."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "Use SSL"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "Use TLS"
@@ -9331,21 +9806,47 @@ msgstr ""
"notifications sent when a job starts, succeeds, or fails. Use\n"
"curly braces to access information about the job:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:258
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr "Use one Annotation Tag per line, without commas."
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use one IRC channel or username per line. The pound\n"
+"symbol (#) for channels, and the at (@) symbol for users, are not\n"
+"required."
+msgstr ""
+"Use one IRC channel or username per line. The pound\n"
+"symbol (#) for channels, and the at (@) symbol for users, are not\n"
+"required."
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr "Use one email address per line to create a recipient list for this type of notification."
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "Used Capacity"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:80
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:88
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "Used capacity"
@@ -9384,34 +9885,39 @@ msgstr "User analytics"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "User and Insights analytics"
+msgid "User and Automation Analytics"
+msgstr "User and Automation Analytics"
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "User and Insights analytics"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "User details"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "User not found."
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "User tokens"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:129
-#: components/ResourceAccessList/ResourceAccessList.js:182
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9426,11 +9932,11 @@ msgstr ""
msgid "Username / password"
msgstr "Username / password"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
-#: routeConfig.js:100
-#: screens/ActivityStream/ActivityStream.js:176
-#: screens/Team/Teams.js:29
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
+#: routeConfig.js:101
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9442,35 +9948,44 @@ msgstr ""
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:105
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:68
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:439
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "Variables"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "Variables Prompted"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Vault password"
@@ -9479,21 +9994,21 @@ msgstr "Vault password"
msgid "Vault password | {credId}"
msgstr "Vault password | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "Verbose"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:260
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "Verbosity"
@@ -9505,8 +10020,8 @@ msgstr "Version"
msgid "View Azure AD settings"
msgstr "View Azure AD settings"
-#: screens/Credential/Credential.js:131
#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "View Credential Details"
@@ -9522,17 +10037,17 @@ msgstr "View GitHub Settings"
msgid "View Google OAuth 2.0 settings"
msgstr "View Google OAuth 2.0 settings"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "View Host Details"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "View Instance Details"
-#: screens/Inventory/Inventory.js:181
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
-#: screens/Inventory/SmartInventory.js:165
+#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
msgstr "View Inventory Details"
@@ -9544,11 +10059,11 @@ msgstr "View Inventory Groups"
msgid "View Inventory Host Details"
msgstr "View Inventory Host Details"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "View JSON examples at <0>www.json.org0>"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "View Job Details"
@@ -9572,11 +10087,11 @@ msgstr "View Miscellaneous Authentication settings"
msgid "View Miscellaneous System settings"
msgstr "View Miscellaneous System settings"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "View Organization Details"
-#: screens/Project/Project.js:196
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "View Project Details"
@@ -9597,8 +10112,8 @@ msgstr "View Schedules"
msgid "View Settings"
msgstr "View Settings"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "View Survey"
@@ -9606,12 +10121,12 @@ msgstr "View Survey"
msgid "View TACACS+ settings"
msgstr "View TACACS+ settings"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "View Team Details"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "View Template Details"
@@ -9619,7 +10134,7 @@ msgstr "View Template Details"
msgid "View Tokens"
msgstr "View Tokens"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "View User Details"
@@ -9627,29 +10142,29 @@ msgstr "View User Details"
msgid "View User Interface settings"
msgstr "View User Interface settings"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "View Workflow Approval Details"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "View YAML examples at <0>docs.ansible.com0>"
-#: components/ScreenHeader/ScreenHeader.js:54
-#: components/ScreenHeader/ScreenHeader.js:57
+#: components/ScreenHeader/ScreenHeader.js:65
+#: components/ScreenHeader/ScreenHeader.js:68
msgid "View activity stream"
msgstr "View activity stream"
-#: screens/Credential/Credential.js:92
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "View all Credentials."
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "View all Hosts."
-#: screens/Inventory/Inventory.js:92
-#: screens/Inventory/SmartInventory.js:93
+#: screens/Inventory/Inventory.js:95
+#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "View all Inventories."
@@ -9661,7 +10176,7 @@ msgstr "View all Inventory Hosts."
msgid "View all Jobs"
msgstr "View all Jobs"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "View all Jobs."
@@ -9670,24 +10185,24 @@ msgstr "View all Jobs."
msgid "View all Notification Templates."
msgstr "View all Notification Templates."
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "View all Organizations."
-#: screens/Project/Project.js:138
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "View all Projects."
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "View all Teams."
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "View all Templates."
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "View all Users."
@@ -9695,24 +10210,24 @@ msgstr "View all Users."
msgid "View all Workflow Approvals."
msgstr "View all Workflow Approvals."
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "View all applications."
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "View all credential types"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "View all execution environments"
-#: screens/InstanceGroup/ContainerGroup.js:95
-#: screens/InstanceGroup/InstanceGroup.js:106
+#: screens/InstanceGroup/ContainerGroup.js:86
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "View all instance groups"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "View all management jobs"
@@ -9749,14 +10264,14 @@ msgstr "View node details"
msgid "View smart inventory host details"
msgstr "View smart inventory host details"
-#: routeConfig.js:29
-#: screens/ActivityStream/ActivityStream.js:137
+#: routeConfig.js:30
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:184
-#: components/TemplateList/TemplateListItem.js:190
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "Visualizer"
@@ -9764,14 +10279,18 @@ msgstr "Visualizer"
msgid "WARNING:"
msgstr "WARNING:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "Waiting"
+#: screens/Job/JobOutput/EmptyOutput.js:23
+msgid "Waiting for job output…"
+msgstr "Waiting for job output…"
+
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "Warning"
@@ -9779,94 +10298,104 @@ msgstr "Warning"
msgid "Warning: Unsaved Changes"
msgstr "Warning: Unsaved Changes"
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:118
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119
msgid "We were unable to locate licenses associated with this account."
msgstr "We were unable to locate licenses associated with this account."
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:137
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138
msgid "We were unable to locate subscriptions associated with this account."
msgstr "We were unable to locate subscriptions associated with this account."
-#: components/DetailList/LaunchedByDetail.js:53
+#: components/DetailList/LaunchedByDetail.js:24
#: components/NotificationList/NotificationList.js:202
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Webhook Credential"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Webhook Credentials"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Webhook Key"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Webhook Service"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Webhook details"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
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."
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Webhook services can use this as a shared secret."
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhooks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr "Webhooks: Enable Webhook for this workflow job template."
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr "Webhooks: Enable webhook for this template."
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "Wed"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "Wednesday"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "Week"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "Weekday"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "Weekend day"
@@ -9878,11 +10407,11 @@ msgstr ""
"Welcome to Red Hat Ansible Automation Platform!\n"
"Please complete the steps below to activate your subscription."
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "Welcome to {brandName}!"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
@@ -9892,7 +10421,7 @@ msgstr ""
"combining local variables with those found on the\n"
"external source."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9914,29 +10443,30 @@ msgstr "Workflow Approval"
msgid "Workflow Approval not found."
msgstr "Workflow Approval not found."
-#: routeConfig.js:53
-#: screens/ActivityStream/ActivityStream.js:148
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: routeConfig.js:54
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "Workflow Approvals"
-#: components/JobList/JobList.js:212
-#: components/JobList/JobListItem.js:41
+#: components/JobList/JobList.js:216
+#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "Workflow Job"
-#: components/JobList/JobListItem.js:182
+#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:134
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "Workflow Job Template"
@@ -9955,27 +10485,27 @@ msgstr "Workflow Job Templates"
msgid "Workflow Link"
msgstr "Workflow Link"
-#: components/TemplateList/TemplateList.js:203
+#: components/TemplateList/TemplateList.js:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:98
msgid "Workflow Template"
msgstr "Workflow Template"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "Workflow approved message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "Workflow approved message body"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "Workflow denied message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "Workflow denied message body"
@@ -9985,6 +10515,10 @@ msgstr "Workflow denied message body"
msgid "Workflow documentation"
msgstr "Workflow documentation"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr "Workflow job details"
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "Workflow job templates"
@@ -9997,49 +10531,49 @@ msgstr "Workflow link modal"
msgid "Workflow node view modal"
msgstr "Workflow node view modal"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "Workflow pending message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "Workflow pending message body"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "Workflow timed out message"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "Workflow timed out message body"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "Write"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "Year"
-#: components/Search/Search.js:211
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "Yes"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js: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}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js: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}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -10053,7 +10587,7 @@ msgstr "You do not have permission to delete the following Groups: {itemsUnableT
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
@@ -10065,7 +10599,7 @@ msgstr ""
"You may apply a number of possible variables in the\n"
"message. For more information, refer to the"
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "Your session has expired. Please log in to continue where you left off."
@@ -10081,13 +10615,23 @@ msgstr "Zoom In"
msgid "Zoom Out"
msgstr "Zoom Out"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/TopologyView/Header.js:51
+#: screens/TopologyView/Header.js:54
+msgid "Zoom in"
+msgstr "Zoom in"
+
+#: screens/TopologyView/Header.js:63
+#: screens/TopologyView/Header.js:66
+msgid "Zoom out"
+msgstr "Zoom out"
+
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "a new webhook key will be generated on save."
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "a new webhook url will be generated on save."
@@ -10095,8 +10639,8 @@ msgstr "a new webhook url will be generated on save."
#~ msgid "actions"
#~ msgstr "actions"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "and click on Update Revision on Launch"
@@ -10117,7 +10661,7 @@ msgstr ""
msgid "cancel edit login redirect"
msgstr "cancel edit login redirect"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "command"
@@ -10135,6 +10679,10 @@ msgstr "confirm disassociate"
msgid "confirm edit login redirect"
msgstr "confirm edit login redirect"
+#: screens/TopologyView/ContentLoading.js:32
+msgid "content-loading-in-progress"
+msgstr "content-loading-in-progress"
+
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:151
msgid "deletion error"
msgstr "deletion error"
@@ -10147,21 +10695,22 @@ msgstr "denied"
msgid "disassociate"
msgstr "disassociate"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: components/Lookup/HostFilterLookup.js:405
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "documentation"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
@@ -10172,28 +10721,43 @@ msgstr "edit"
#~ msgstr "edit survey"
#: screens/Template/Survey/SurveyListItem.js:65
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "encrypted"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: components/Lookup/HostFilterLookup.js:407
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "for more info."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "for more information."
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: screens/TopologyView/Legend.js:100
+msgid "h"
+msgstr "h"
+
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "here"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "here."
-#: components/Lookup/HostFilterLookup.js:371
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr "host-description-{0}"
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr "host-name-{0}"
+
+#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "hosts"
@@ -10209,7 +10773,7 @@ msgstr "ldap user"
msgid "login type"
msgstr "login type"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "min"
@@ -10225,12 +10789,16 @@ msgstr "min"
msgid "new choice"
msgstr "new choice"
+#: screens/TopologyView/Tooltip.js:94
+msgid "node"
+msgstr "node"
+
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "of"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "option to the"
@@ -10251,21 +10819,21 @@ msgstr ""
msgid "relaunch jobs"
msgstr "relaunch jobs"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "sec"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "seconds"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "select module"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "select verbosity"
+#~ msgid "select verbosity"
+#~ msgstr "select verbosity"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -10275,8 +10843,8 @@ msgstr "since"
msgid "social login"
msgstr "social login"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "source control branch"
@@ -10288,7 +10856,7 @@ msgstr "system"
msgid "timed out"
msgstr "timed out"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "toggle changes"
@@ -10296,11 +10864,11 @@ msgstr "toggle changes"
msgid "updated"
msgstr "updated"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "workflow job template webhook key"
-#: screens/Inventory/InventoryList/InventoryListItem.js:61
+#: screens/Inventory/InventoryList/InventoryListItem.js:65
msgid "{0, plural, one {# source with sync failures.} other {# sources with sync failures.}}"
msgstr "{0, plural, one {# source with sync failures.} other {# sources with sync failures.}}"
@@ -10321,22 +10889,22 @@ msgid "{0, plural, one {Please enter a valid phone number.} other {Please enter
msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter valid phone numbers.}}"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175
-msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
-msgstr "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
+#~ msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
+#~ msgstr "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
-#: screens/Inventory/InventoryList/InventoryList.js:232
+#: screens/Inventory/InventoryList/InventoryList.js:247
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:178
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10344,19 +10912,19 @@ msgstr "{0, plural, one {This credential is currently being used by other resour
msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:180
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:194
msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
msgstr "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:272
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:196
msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventoryList/InventoryList.js:225
+#: screens/Inventory/InventoryList/InventoryList.js:240
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10368,11 +10936,12 @@ msgstr "{0, plural, one {This inventory source is currently being used by other
msgid "{0, plural, one {This organization is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This organization is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Project/ProjectList/ProjectList.js:238
+#: screens/Project/ProjectList/ProjectList.js:252
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/TemplateList/TemplateList.js:250
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10408,9 +10977,9 @@ msgstr "{brandName} logo"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} by <0>{username}0>"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
@@ -10419,27 +10988,27 @@ msgstr "{forks, plural, one {# fork} other {# forks}}"
#~ msgid "{hopNodeSelected, plural, one {Cannot run health check on a hop node. Deselect the hop node to run a health check.} other {Cannot run health check on hop nodes. Deselect the hop nodes to run health checks.}}"
#~ msgstr "{hopNodeSelected, plural, one {Cannot run health check on a hop node. Deselect the hop node to run a health check.} other {Cannot run health check on hop nodes. Deselect the hop nodes to run health checks.}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
@@ -10451,7 +11020,7 @@ msgstr "{intervalValue, plural, one {year} other {years}}"
#~ msgid "{label} time"
#~ msgstr "{label} time"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} min {seconds} sec"
diff --git a/awx/ui/src/locales/es/messages.po b/awx/ui/src/locales/es/messages.po
index 2279812533..0252626272 100644
--- a/awx/ui/src/locales/es/messages.po
+++ b/awx/ui/src/locales/es/messages.po
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(Limitado a los primeros 10)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(Preguntar al ejecutar)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "* Este campo se recuperará de un sistema de gestión de claves secretas externo con la credencial especificada."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (raíz del proyecto)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (Normal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (Advertencia)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (Información)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (Nivel de detalle)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (Depurar)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (Más nivel de detalle)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (Depurar)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (Depuración de la conexión)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (Depuración de WinRM)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "Un manifiesto de suscripción es una exportación de una suscripción de
msgid "ALL"
msgstr "TODOS"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "Servicio API/Clave de integración"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "Token API"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "Servicio API/clave de integración"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "Acerca de"
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "Acceso"
@@ -158,12 +127,12 @@ msgstr "Acceso"
msgid "Access Token Expiration"
msgstr "Expiración del token de acceso"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "Cuenta SID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "Cuenta token"
@@ -171,18 +140,19 @@ msgstr "Cuenta token"
msgid "Action"
msgstr "Acción"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "Acción"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "Acción"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "Acción"
msgid "Actions"
msgstr "Acciones"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "Actividad"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "Flujo de actividad"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "Selector de tipo de flujo de actividad"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "Actor"
@@ -274,19 +244,19 @@ msgstr "Agregar enlace"
msgid "Add Node"
msgstr "Agregar nodo"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "Agregar pregunta"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "Agregar roles"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "Agregar roles de equipo"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "Agregar roles de usuario"
@@ -331,7 +301,7 @@ msgstr "Agregar nuevo grupo"
msgid "Add new host"
msgstr "Agregar nuevo host"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "Agregar tipo de recurso"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "Agregar plantilla de flujo de trabajo"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "Administración"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "Avanzado"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "Documentación de búsqueda avanzada"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "Entrada de valores de búsqueda avanzada"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "Después de cada actualización del proyecto en el que se modifique la revisión SCM, actualice el inventario del origen seleccionado antes de llevar a cabo tareas. Esto está orientado a contenido estático, como el formato de archivo .ini del inventario Ansible."
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "Después del número de ocurrencias"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "Modal de alerta"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "Todos"
@@ -402,30 +372,31 @@ msgstr "Todos los tipos de tarea"
msgid "All jobs"
msgstr "Todas las tareas"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "Permitir la anulación de la rama"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "Permitir la invalidación de la rama"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
-msgstr "Permitir el cambio de la rama o revisión de la fuente de control\n"
+msgstr ""
+"Permitir el cambio de la rama o revisión de la fuente de control\n"
"en una plantilla de trabajo que utilice este proyecto."
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "Lista de URI permitidos, separados por espacios"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "Siempre"
@@ -449,27 +420,27 @@ msgstr "Documentación de Ansible Tower."
msgid "Answer type"
msgstr "Tipo de respuesta"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "Nombre de la variable de respuesta"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "Cualquiera"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "Aplicación"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "Nombre de la aplicación"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "Información de la aplicación"
@@ -478,57 +449,58 @@ msgstr "Información de la aplicación"
msgid "Application name"
msgstr "Nombre de la aplicación"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "No se encontró la aplicación."
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "Aplicaciones"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "Aplicaciones y tokens"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "Aprobación"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "Aprobar"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "Aprobado"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "Aprobado - {0}. Consulte el flujo de actividades para obtener más información."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "Aprobado por {0} - {1}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "Abril"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "¿Está seguro de que desea cancelar esta tarea?"
@@ -572,16 +544,16 @@ msgstr "¿Está seguro de que desea eliminar el acceso de {0} a {1}? Esto afecta
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "¿Está seguro de que quiere eliminar el acceso de {0} a {username}?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "¿Está seguro de que desea enviar la solicitud para cancelar este trabajo?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "Argumentos"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "Artefactos"
@@ -603,7 +575,7 @@ msgstr "Modal de asociación"
msgid "At least one value must be selected for this field."
msgstr "Debe seleccionar al menos un valor para este campo."
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "Agosto"
@@ -615,18 +587,27 @@ msgstr "Identificación"
msgid "Authorization Code Expiration"
msgstr "Expiración del código de autorización"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "Tipo de autorización"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -635,8 +616,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Configuración de Azure AD"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -669,7 +650,7 @@ msgstr "Volver a Hosts"
msgid "Back to Instance Groups"
msgstr "Volver a los grupos de instancias"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "Volver a las instancias"
@@ -760,7 +741,7 @@ msgstr "Volver a los grupos de instancias"
msgid "Back to management jobs"
msgstr "Volver a las tareas de gestión"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -768,17 +749,18 @@ msgid ""
"path used to locate playbooks."
msgstr "Directorio base utilizado para encontrar playbooks. Los directorios encontrados dentro de esta ruta se mostrarán en el menú desplegable del directorio de playbooks. Junto a la ruta base y el directorio de playbooks seleccionado, se creará la ruta completa utilizada para encontrar los playbooks."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "Contraseña de autenticación básica"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
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 "Rama para realizar la comprobación. Además de las ramas, puede\n"
+msgstr ""
+"Rama para realizar la comprobación. Además de las ramas, puede\n"
"introducir etiquetas, hashes de commit y referencias arbitrarias. Es posible\n"
"que algunos hashes y referencias de commit no estén disponibles,\n"
"a menos que usted también proporcione un refspec personalizado."
@@ -791,43 +773,47 @@ msgstr "Imagen de marca"
msgid "Browse"
msgstr "Navegar"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "Navegar"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "Por defecto, recopilamos y transmitimos a Red Hat datos analíticos sobre el uso del servicio. Hay dos categorías de datos recogidos por el servicio. Para más información, consulte esta <0>página de documentación de Tower0>. Desmarque las siguientes casillas para desactivar esta función."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "Por defecto, recopilamos y transmitimos a Red Hat datos analíticos sobre el uso del servicio. Hay dos categorías de datos recogidos por el servicio. Para más información, consulte esta <0>página de documentación de Tower0>. Desmarque las siguientes casillas para desactivar esta función."
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "Tiempo de espera de la caché"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "Tiempo de espera de la caché"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "Tiempo de espera de la caché (segundos)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -838,11 +824,13 @@ msgstr "Tiempo de espera de la caché (segundos)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -863,7 +851,7 @@ msgstr "Tiempo de espera de la caché (segundos)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -872,32 +860,34 @@ msgstr "Tiempo de espera de la caché (segundos)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "Cancelar"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "Cancelar sincronización de la fuente del inventario"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "Cancelar tarea"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "Cancelar sincronización del proyecto"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "Cancelar sincronización"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "Cancelar tarea"
@@ -909,7 +899,7 @@ msgstr "Cancelar cambios de enlace"
msgid "Cancel link removal"
msgstr "Cancelar eliminación del enlace"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "Cancelar búsqueda"
@@ -935,24 +925,29 @@ msgid "Cancel subscription edit"
msgstr "Cancelar modificación de la suscripción"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "Cancelar {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "Cancelado"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
"logging aggregator host and logging aggregator type."
-msgstr "No se puede habilitar la agregación de registros sin proporcionar\n"
+msgstr ""
+"No se puede habilitar la agregación de registros sin proporcionar\n"
"el host y el tipo de agregación de registros."
#: screens/Instances/InstanceList/InstanceList.js:148
@@ -964,10 +959,10 @@ msgstr "Cannot run health check on hop nodes."
msgid "Capacity"
msgstr "Capacidad"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -993,14 +988,15 @@ msgstr "Versión de regex que no distingue mayúsculas de minúsculas."
msgid "Case-insensitive version of startswith."
msgstr "Versión de startswith que no distingue mayúsculas de minúsculas."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
-msgstr "Cambie PROJECTS_ROOT al implementar {brandName}\n"
+msgstr ""
+"Cambie PROJECTS_ROOT al implementar {brandName}\n"
"para cambiar esta ubicación."
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "Cambiado"
@@ -1009,13 +1005,13 @@ msgstr "Cambiado"
msgid "Changes"
msgstr "Cambios"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "Canal"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "Comprobar"
@@ -1039,20 +1035,20 @@ msgstr "Elegir un tipo de notificación"
msgid "Choose a Playbook Directory"
msgstr "Elegir un directorio de playbook"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "Elegir un tipo de fuente de control"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Elegir un servicio de Webhook"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "Seleccionar un tipo de tarea"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "Elegir un módulo"
@@ -1060,7 +1056,7 @@ msgstr "Elegir un módulo"
msgid "Choose a source"
msgstr "Elegir una fuente"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "Elegir un método HTTP"
@@ -1079,20 +1075,20 @@ msgstr "Elija los roles que se aplicarán a los recursos seleccionados. Tenga en
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 "Elija los recursos que recibirán nuevos roles. Podrá seleccionar los roles que se aplicarán en el siguiente paso. Tenga en cuenta que los recursos elegidos aquí recibirán todos los roles elegidos en el siguiente paso."
-#: components/AddRole/AddResourceRole.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "Elija el tipo de recurso que recibirá los nuevos roles. Por ejemplo, si desea agregar nuevos roles a un conjunto de usuarios, elija Users (Usuarios) y haga clic en Next (Siguiente). Podrá seleccionar los recursos específicos en el siguiente paso."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "Limpiar"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "Borrar"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "Borrar todos los filtros"
@@ -1105,7 +1101,7 @@ msgstr "Borrar suscripción"
msgid "Clear subscription selection"
msgstr "Borrar selección de la suscripción"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "Haga clic en un nodo disponible para crear un nuevo enlace. Haga clic fuera del gráfico para cancelar."
@@ -1133,29 +1129,29 @@ msgstr "Haga clic para cambiar el orden de las preguntas de la encuesta"
msgid "Click to toggle default value"
msgstr "Haga clic para alternar el valor predeterminado"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "Haga clic para ver los detalles de la tarea"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "ID del cliente"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "Identificador del cliente"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "Identificador del cliente"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "Clave secreta del cliente"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "Tipo de cliente"
@@ -1184,24 +1180,36 @@ msgstr "Collapse all job events"
msgid "Collapse section"
msgstr "Collapse section"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "Comando"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "Compatible"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "Tareas concurrentes"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1221,11 +1229,11 @@ msgstr "Confirmar deshabilitación de la autorización local"
msgid "Confirm Password"
msgstr "Confirmar la contraseña"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "Confirmar cancelación de la tarea"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "Confirmar cancelación"
@@ -1257,7 +1265,7 @@ msgstr "Confirmar la reversión de todo"
msgid "Confirm selection"
msgstr "Confirmar selección"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "Grupo de contenedores"
@@ -1289,33 +1297,44 @@ msgstr "Control"
msgid "Control node"
msgstr "Control node"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "Controlar el nivel de salida que producirá Ansible para las tareas de actualización de fuentes de inventario."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
-msgstr "Controlar el nivel de salida que\n"
+msgstr ""
+"Controlar el nivel de salida que\n"
"producirá Ansible al ejecutar playbooks."
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "Controlar el nivel de salida que producirá\n"
-"Ansible al ejecutar playbooks."
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr ""
+#~ "Controlar el nivel de salida que producirá\n"
+#~ "Ansible al ejecutar playbooks."
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "Convergencia"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "Selección de convergencia"
@@ -1343,15 +1362,15 @@ msgstr "Copiar inventario"
msgid "Copy Notification Template"
msgstr "Copiar plantilla de notificaciones"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "Copiar proyecto"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "Copiar plantilla"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "Copie la revisión completa al portapapeles."
@@ -1360,33 +1379,35 @@ msgstr "Copie la revisión completa al portapapeles."
msgid "Copyright"
msgstr "Copyright"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "Crear"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "Crear una nueva aplicación"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "Crear nueva credencial"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "Crear nuevo host"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "Crear nueva plantilla de trabajo"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "Crear nueva plantilla de notificación"
@@ -1395,20 +1416,20 @@ msgstr "Crear nueva plantilla de notificación"
msgid "Create New Organization"
msgstr "Crear nueva organización"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "Crear nuevo proyecto"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "Crear nuevo planificador"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "Crear nuevo equipo"
@@ -1417,7 +1438,7 @@ msgstr "Crear nuevo equipo"
msgid "Create New User"
msgstr "Crear nuevo usuario"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "Crear plantilla de flujo de trabajo"
@@ -1425,8 +1446,8 @@ msgstr "Crear plantilla de flujo de trabajo"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "Crear un nuevo inventario inteligente con el filtro aplicado"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "Crear nuevo grupo de contenedores"
@@ -1443,30 +1464,30 @@ msgstr "Crear un nuevo tipo de credencial"
msgid "Create new execution environment"
msgstr "Crear un nuevo entorno de ejecución"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "Crear nuevo grupo"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "Crear nuevo host"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "Crear nuevo grupo de instancias"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "Crear nuevo inventario"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "Crear nuevo inventario inteligente"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "Crear nueva fuente"
@@ -1475,39 +1496,39 @@ msgid "Create user token"
msgstr "Crear token de usuario"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "Creado"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1518,7 +1539,7 @@ msgstr "Creado"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1527,7 +1548,7 @@ msgstr "Creado"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1555,24 +1576,23 @@ msgstr "Creado por (nombre de usuario)"
msgid "Created by (username)"
msgstr "Creado por (nombre de usuario)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "Credencial"
@@ -1585,14 +1605,15 @@ msgstr "Fuentes de entrada de la credencial"
msgid "Credential Name"
msgstr "Nombre de la credencial"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "Tipo de credencial"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1600,11 +1621,11 @@ msgstr "Tipo de credencial"
msgid "Credential Types"
msgstr "Tipos de credencial"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "Credential copied successfully"
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "No se encontró la credencial."
@@ -1613,15 +1634,19 @@ msgstr "No se encontró la credencial."
msgid "Credential passwords"
msgstr "Contraseñas de credenciales"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "Credencial para autenticarse con Kubernetes u OpenShift. Debe ser del tipo \"Kubernetes/OpenShift API Bearer Token\". Si se deja en blanco, se usará la cuenta de servicio del Pod subyacente."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "Credencial para autenticarse con un registro de contenedores protegido."
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "No se encontró el tipo de credencial."
@@ -1630,20 +1655,20 @@ msgstr "No se encontró el tipo de credencial."
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "Credenciales"
@@ -1656,6 +1681,10 @@ msgstr "No se permiten las credenciales que requieran contraseñas al iniciarse.
msgid "Current page"
msgstr "Página actual"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "Especificaciones del pod personalizado"
@@ -1670,7 +1699,7 @@ msgstr "El entorno virtual personalizado {0} debe ser sustituido por un entorno
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "El entorno virtual personalizado {0} debe ser sustituido por un entorno de ejecución. Para más información sobre la migración a entornos de ejecución, consulte la <0>documentación.0>"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "El entorno virtual personalizado {virtualEnvironment} debe ser sustituido por un entorno de ejecución. Para más información sobre la migración a entornos de ejecución, consulte la <0>documentación.0>"
@@ -1693,7 +1722,7 @@ msgstr "ELIMINADO"
msgid "Dashboard"
msgstr "Panel de control"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "Panel de control (toda la actividad)"
@@ -1705,14 +1734,14 @@ msgstr "Período de conservación de datos"
msgid "Date"
msgstr "Fecha"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "Día"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "Días de datos para mantener"
@@ -1728,11 +1757,11 @@ msgstr "Días restantes"
msgid "Days to keep"
msgstr "Días para guardar"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "Debug"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "Diciembre"
@@ -1743,9 +1772,9 @@ msgstr "Diciembre"
msgid "Default"
msgstr "Predeterminado"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "Respuesta(s) por defecto"
@@ -1753,9 +1782,9 @@ msgstr "Respuesta(s) por defecto"
msgid "Default Execution Environment"
msgstr "Entorno de ejecución predeterminado"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "Respuesta predeterminada"
@@ -1774,35 +1803,35 @@ msgstr "Defina características y funciones a nivel del sistema"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "ELIMINAR"
@@ -1810,42 +1839,42 @@ msgstr "ELIMINAR"
msgid "Delete All Groups and Hosts"
msgstr "Eliminar todos los grupos y hosts"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "Eliminar credencial"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "Eliminar entorno de ejecución"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "Borrar un host"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "Eliminar inventario"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "Eliminar tarea"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "Eliminar plantilla de trabajo"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "Eliminar notificación"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "Eliminar organización"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "Eliminar proyecto"
@@ -1853,7 +1882,7 @@ msgstr "Eliminar proyecto"
msgid "Delete Questions"
msgstr "Eliminar pregunta"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "Eliminar planificación"
@@ -1869,15 +1898,15 @@ msgstr "Eliminar equipo"
msgid "Delete User"
msgstr "Eliminar usuario"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "Eliminar token de usuario"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "Eliminar la aprobación del flujo de trabajo"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "Eliminar plantilla de trabajo del flujo de trabajo"
@@ -1886,28 +1915,28 @@ msgstr "Eliminar plantilla de trabajo del flujo de trabajo"
msgid "Delete all nodes"
msgstr "Eliminar todos los nodos"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "Eliminar aplicación"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "Eliminar tipo de credencial"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "Eliminar el error"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "Eliminar grupo de instancias"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "Eliminar fuente de inventario"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "Eliminar inventario inteligente"
@@ -1915,19 +1944,20 @@ msgstr "Eliminar inventario inteligente"
msgid "Delete survey question"
msgstr "Eliminar la pregunta de la encuesta"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
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 "Elimine el repositorio local por completo antes de realizar\n"
+msgstr ""
+"Elimine el repositorio local por completo antes de realizar\n"
"una actualización. Según el tamaño del repositorio, esto\n"
"podría incrementar significativamente el tiempo necesario\n"
"para completar una actualización."
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "Eliminar el proyecto antes de la sincronización."
@@ -1943,14 +1973,17 @@ msgstr "Eliminar este nodo"
msgid "Delete {pluralizedItemName}?"
msgstr "¿Eliminar {pluralizedItemName}?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "Eliminado"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1962,67 +1995,71 @@ msgstr "Error de eliminación"
msgid "Deletion error"
msgstr "Error de eliminación"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "Denegado"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "Denegado: {0}. Consulte el flujo de actividad para obtener más información."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "Denegado por {0} - {1}"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "Denegar"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "Obsoleto"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2031,93 +2068,96 @@ msgstr "Obsoleto"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "Descripción"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "Canales destinatarios"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "Canales destinatarios o usuarios"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "Números SMS del destinatario"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "Números SMS del destinatario"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "Canales destinatarios"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "Usuarios o canales destinatarios"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2152,53 +2192,53 @@ msgstr "Usuarios o canales destinatarios"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "Detalles"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "Pestaña de detalles"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "Teclas directas"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "Deshabilite la verificación de SSL"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "Deshabilitar verificación SSL"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "Deshabilitados"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2213,12 +2253,12 @@ msgstr "Disociar"
msgid "Disassociate group from host?"
msgstr "¿Disociar grupo del host?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "¿Disociar host del grupo?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "¿Disociar instancia del grupo de instancias?"
@@ -2245,18 +2285,23 @@ msgid "Disassociate?"
msgstr "¿Disociar?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "Descartar los cambios locales antes de la sincronización"
#: screens/Template/shared/JobTemplateForm.js:479
-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 "Divida el trabajo realizado por esta plantilla de trabajo en la cantidad especificada de fracciones de trabajo, cada una ejecutando las mismas tareas respecto de una fracción de inventario."
+#~ 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 "Divida el trabajo realizado por esta plantilla de trabajo en la cantidad especificada de fracciones de trabajo, cada una ejecutando las mismas tareas respecto de una fracción de inventario."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "Documentación."
@@ -2272,58 +2317,76 @@ msgstr "Finalizado"
msgid "Download Output"
msgstr "Descargar salida"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "Arrastre un archivo aquí o navegue para cargarlo"
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "Correo electrónico"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "Opciones de correo electrónico"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
msgid ""
"Each time a job runs using this inventory,\n"
"refresh the inventory from the selected source before\n"
"executing job tasks."
-msgstr "Cada vez que se ejecute una tarea con este inventario,\n"
+msgstr ""
+"Cada vez que se ejecute una tarea con este inventario,\n"
"actualice el inventario de la fuente seleccionada antes\n"
"de ejecutar tareas de trabajo."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:96
+#: screens/Project/shared/Project.helptext.js:120
msgid ""
"Each time a job runs using this project, update the\n"
"revision of the project prior to starting the job."
-msgstr "Cada vez que una tarea se ejecute con este proyecto,\n"
+msgstr ""
+"Cada vez que una tarea se ejecute con este proyecto,\n"
"actualice la revisión del proyecto antes de iniciar dicha tarea."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2351,10 +2414,10 @@ msgstr "Cada vez que una tarea se ejecute con este proyecto,\n"
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2370,14 +2433,14 @@ msgstr "Modificar credencial"
msgid "Edit Credential Plugin Configuration"
msgstr "Modificar configuración del complemento de credenciales"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2402,8 +2465,8 @@ msgstr "Modificar configuración del complemento de credenciales"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "Modificar detalles"
@@ -2420,11 +2483,11 @@ msgstr "Modificar entorno de ejecución"
msgid "Edit Group"
msgstr "Modificar grupo"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "Modificar host"
@@ -2459,18 +2522,18 @@ msgstr "Orden de edición"
msgid "Edit Organization"
msgstr "Editar organización"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "Modificar proyecto"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "Editar pregunta"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "Modificar programación"
@@ -2482,15 +2545,15 @@ msgstr "Modificar fuente"
msgid "Edit Survey"
msgstr "Editar el cuestionario"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "Modificar equipo"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "Modificar plantilla"
@@ -2511,12 +2574,12 @@ msgstr "Editar el tipo de credencial"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "Modificar detalles"
@@ -2525,7 +2588,7 @@ msgstr "Modificar detalles"
msgid "Edit group"
msgstr "Editar grupo"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "Editar el servidor"
@@ -2547,13 +2610,13 @@ msgstr "Modificar este enlace"
msgid "Edit this node"
msgstr "Modificar este nodo"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "Editar el flujo de trabajo"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "Tiempo transcurrido"
@@ -2573,15 +2636,15 @@ msgstr "Tiempo transcurrido de la ejecución de la tarea "
msgid "Email"
msgstr "Correo electrónico"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "Opciones de correo electrónico"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "Activar los trabajos concurrentes"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "Habilitar almacenamiento de eventos"
@@ -2589,14 +2652,14 @@ msgstr "Habilitar almacenamiento de eventos"
msgid "Enable HTTPS certificate verification"
msgstr "Habilitar verificación del certificado HTTPS"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Habilitar Webhook"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "Habilitar Webhook para esta plantilla de trabajo del flujo de trabajo."
@@ -2608,8 +2671,8 @@ msgstr "Habilitar registro externo"
msgid "Enable log system tracking facts individually"
msgstr "Habilitar eventos de seguimiento del sistema de registro de forma individual"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "Habilitar elevación de privilegios"
@@ -2617,7 +2680,7 @@ msgstr "Habilitar elevación de privilegios"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Habilite el inicio de sesión simplificado para sus aplicaciones {brandName}"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "Habilitar webhook para esta plantilla."
@@ -2627,52 +2690,58 @@ msgstr "Habilitar webhook para esta plantilla."
msgid "Enabled"
msgstr "Habilitado"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "Opciones habilitadas"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "Valor habilitado"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "Variable habilitada"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
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 "Permite la creación de una URL de\n"
+msgstr ""
+"Permite la creación de una URL de\n"
"de aprovisionamiento. A través de esta URL, un host puede ponerse en contacto con {brandName} y solicitar una actualización de la configuración utilizando esta plantilla"
#: screens/Template/shared/JobTemplateForm.js:568
-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 "Permite la creación de una URL de\n"
-"de aprovisionamiento. A través de esta URL, un host puede ponerse en contacto con {brandName} y solicitar una actualización de la configuración utilizando esta plantilla de trabajo."
+#~ 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 ""
+#~ "Permite la creación de una URL de\n"
+#~ "de aprovisionamiento. A través de esta URL, un host puede ponerse en contacto con {brandName} y solicitar una actualización de la configuración utilizando esta plantilla de trabajo."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "Cifrado"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "Fin"
@@ -2684,7 +2753,7 @@ msgstr "Acuerdo de licencia de usuario final"
msgid "End date"
msgstr "Fecha de terminación"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "Fecha/hora de finalización"
@@ -2717,105 +2786,114 @@ 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 "Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML.\n"
+msgstr ""
+"Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML.\n"
"Utilice el botón de selección para alternar entre las dos opciones. Consulte la\n"
"documentación de Ansible Tower para acceder a ejemplos de sintaxis."
#: screens/Inventory/shared/InventoryForm.js:92
-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 "Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML. Utilice el botón de selección para alternar entre las dos opciones. Consulte la documentación de Ansible Tower para acceder a ejemplos de sintaxis"
+#~ 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 "Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML. Utilice el botón de selección para alternar entre las dos opciones. Consulte la documentación de Ansible Tower para acceder a ejemplos de sintaxis"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "Ingrese una etiqueta de anotación por línea sin comas."
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "Ingrese una etiqueta de anotación por línea sin comas."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "Ingrese un canal de IRC o nombre de usuario por línea. El símbolo numeral (#)\n"
-"para canales y el símbolo arroba (@) para usuarios no son\n"
-"necesarios."
+#~ 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 ""
+#~ "Ingrese un canal de IRC o nombre de usuario por línea. El símbolo numeral (#)\n"
+#~ "para canales y el símbolo arroba (@) para usuarios no son\n"
+#~ "necesarios."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "Ingrese una dirección de correo electrónico por línea\n"
-"para crear una lista de destinatarios para este tipo de notificación."
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr ""
+#~ "Ingrese una dirección de correo electrónico por línea\n"
+#~ "para crear una lista de destinatarios para este tipo de notificación."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "Introduzca un número de teléfono por línea para especificar a dónde enviar los mensajes SMS. Los números de teléfono deben tener el formato +11231231234. Para más información, consulte la documentación de Twilio."
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr "Introduzca un número de teléfono por línea para especificar a dónde enviar los mensajes SMS. Los números de teléfono deben tener el formato +11231231234. Para más información, consulte la documentación de Twilio."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "Ingrese el número asociado con el \"Servicio de mensajería\"\n"
-"en Twilio con el formato +18005550199."
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr ""
+#~ "Ingrese el número asociado con el \"Servicio de mensajería\"\n"
+#~ "en Twilio con el formato +18005550199."
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar la fuente de inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>Insights1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar la fuente de inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>Insights1>."
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1> de Tower 1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1> de Tower 1>."
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>aws_ec21>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>aws_ec21>."
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte <0>Plugins de inventario 0>en la documentación y la guía de configuración del plugin <1>azure_rm1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte <0>Plugins de inventario 0>en la documentación y la guía de configuración del plugin <1>azure_rm1>."
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>foreman1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1>foreman1>."
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del <1>plugin gcp_compute1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del <1>plugin gcp_compute1>."
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, vea <0>plugins de inventario0> en la documentación y la guía de configuración de plugins de <1>openstack1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, vea <0>plugins de inventario0> en la documentación y la guía de configuración de plugins de <1>openstack1>."
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1> de ovirt1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, consulte los <0>plugins de inventario0> en la documentación y la guía de configuración del plugin <1> de ovirt1>."
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, vea <0>plugins de inventario0>en la documentación y la guía de configuración del plugin <1>vmware_vm_inventory1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "Introduzca las variables para configurar el origen del inventario. Para una descripción detallada de cómo configurar este plugin, vea <0>plugins de inventario0>en la documentación y la guía de configuración del plugin <1>vmware_vm_inventory1>."
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos."
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos."
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "Error"
@@ -2824,90 +2902,90 @@ msgstr "Error"
msgid "Error fetching updated project"
msgstr "Error al recuperar el proyecto actualizado"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "Mensaje de error"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "Cuerpo del mensaje de error"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "Error al guardar el flujo de trabajo"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2918,13 +2996,16 @@ msgstr "Error al guardar el flujo de trabajo"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "¡Error!"
@@ -2932,12 +3013,12 @@ msgstr "¡Error!"
msgid "Error:"
msgstr "Error:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "Errores"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2955,11 +3036,11 @@ msgstr "Modal de detalles del evento"
msgid "Event summary not available"
msgstr "Resumen del evento no disponible."
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "Eventos"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "Cada minuto durante {0} veces"
@@ -2975,35 +3056,35 @@ msgstr "Coincidencia exacta (búsqueda predeterminada si no se especifica)."
msgid "Exact search on id field."
msgstr "Búsqueda exacta en el campo de identificación."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "A continuación, se incluyen algunos ejemplos de URL para la fuente de control de GIT:"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "A continuación, se incluyen ejemplos de URL para la fuente de control de archivo remoto:"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "A continuación, se incluyen algunos ejemplos de URL para la fuente de control de subversión:"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "Los ejemplos incluyen:"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "Ejemplos:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "Ejecutar independientemente del estado final del nodo primario."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "Ejecutar cuando el nodo primario se encuentre en estado de error."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "Ejecutar cuando el nodo primario se encuentre en estado correcto."
@@ -3014,29 +3095,29 @@ msgstr "Nodo de ejecución"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "Entorno de ejecución"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "Falta el entorno de ejecución"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3044,7 +3125,7 @@ msgstr "Falta el entorno de ejecución"
msgid "Execution Environments"
msgstr "Entornos de ejecución"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "Nodo de ejecución"
@@ -3052,11 +3133,11 @@ msgstr "Nodo de ejecución"
msgid "Execution environment copied successfully"
msgstr "Execution environment copied successfully"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "Falta el entorno de ejecución o se ha eliminado."
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "No se encontró el entorno de ejecución."
@@ -3073,7 +3154,7 @@ msgstr "Salir sin guardar"
msgid "Expand"
msgstr "Expandir"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "Desplegar todas las filas"
@@ -3095,15 +3176,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "Se esperaba que al menos uno de client_email, project_id o private_key estuviera presente en el archivo."
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "Expira"
@@ -3115,13 +3196,12 @@ msgstr "Fecha de expiración"
msgid "Expires on UTC"
msgstr "Fecha de expiración (UTC):"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "Expira el {0}"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "Explicación"
@@ -3129,35 +3209,39 @@ msgstr "Explicación"
msgid "External Secret Management System"
msgstr "Sistema externo de gestión de claves secretas"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "Variables adicionales"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "FINALIZADO:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "Almacenamiento de datos"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "Eventos"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3182,15 +3266,16 @@ msgstr "Hosts fallidos"
msgid "Failed jobs"
msgstr "Tareas fallidas"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "No se pudo aprobar uno o más flujos de trabajo."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "No se pudo aprobar el flujo de trabajo."
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "No se pudieron asignar correctamente los roles"
@@ -3200,31 +3285,36 @@ msgid "Failed to associate role"
msgstr "No se pudo asociar el rol"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "No se pudo asociar."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "No se pudo cancelar la sincronización de fuentes de inventario"
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "No se pudo cancelar la sincronización de proyectos"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "No se pudo cancelar una o varias tareas."
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "No se ha podido cancelar {0}"
@@ -3240,20 +3330,20 @@ msgstr "No se pudo copiar el entorno de ejecución"
msgid "Failed to copy inventory."
msgstr "No se pudo copiar el inventario."
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "No se pudo copiar el proyecto."
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "No se pudo copiar la plantilla."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "No se pudo eliminar la aplicación."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "No se pudo eliminar la credencial."
@@ -3261,24 +3351,24 @@ msgstr "No se pudo eliminar la credencial."
msgid "Failed to delete group {0}."
msgstr "No se pudo eliminar el grupo {0}."
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "No se pudo eliminar el host."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "No se pudo eliminar la fuente del inventario {name}."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "No se pudo eliminar el inventario."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "No se pudo eliminar la plantilla de trabajo."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "No se pudo eliminar la notificación."
@@ -3290,7 +3380,7 @@ msgstr "No se pudo eliminar una o más aplicaciones."
msgid "Failed to delete one or more credential types."
msgstr "No se pudo eliminar uno o más tipos de credenciales."
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "No se pudo eliminar una o más credenciales."
@@ -3302,8 +3392,8 @@ msgstr "No se pudo eliminar uno o más entornos de ejecución"
msgid "Failed to delete one or more groups."
msgstr "No se pudo eliminar uno o varios grupos."
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "No se pudo eliminar uno o más hosts."
@@ -3315,15 +3405,15 @@ msgstr "No se pudo eliminar uno o más grupos de instancias."
msgid "Failed to delete one or more inventories."
msgstr "No se pudo eliminar uno o más inventarios."
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "No se pudo eliminar una o más fuentes de inventario."
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "No se pudo eliminar una o más plantillas de trabajo."
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "No se pudo eliminar una o más tareas."
@@ -3347,7 +3437,7 @@ msgstr "No se pudo eliminar una o más programaciones."
msgid "Failed to delete one or more teams."
msgstr "No se pudo eliminar uno o más equipos."
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "No se pudo eliminar una o más plantillas."
@@ -3355,7 +3445,7 @@ msgstr "No se pudo eliminar una o más plantillas."
msgid "Failed to delete one or more tokens."
msgstr "No se pudo eliminar uno o más tokens."
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "No se pudo eliminar uno o más tokens de usuario."
@@ -3363,19 +3453,19 @@ msgstr "No se pudo eliminar uno o más tokens de usuario."
msgid "Failed to delete one or more users."
msgstr "No se pudo eliminar uno o más usuarios."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "No se pudo eliminar una o más aprobaciones del flujo de trabajo."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "No se pudo eliminar la organización."
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "No se pudo eliminar el proyecto."
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "No se pudo eliminar el rol"
@@ -3384,11 +3474,11 @@ msgstr "No se pudo eliminar el rol"
msgid "Failed to delete role."
msgstr "No se pudo eliminar el rol."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "No se pudo eliminar la programación."
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "No se pudo eliminar el inventario inteligente."
@@ -3400,11 +3490,11 @@ msgstr "No se pudo eliminar el equipo."
msgid "Failed to delete user."
msgstr "No se pudo eliminar el usuario."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "No se pudo eliminar la aprobación del flujo de trabajo."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "No se pudo eliminar la plantilla de trabajo del flujo de trabajo."
@@ -3413,11 +3503,11 @@ msgstr "No se pudo eliminar la plantilla de trabajo del flujo de trabajo."
msgid "Failed to delete {name}."
msgstr "No se pudo eliminar {name}."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "No se pudo denegar una o más aprobaciones del flujo de trabajo."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "No se pudo denegar la aprobación del flujo de trabajo."
@@ -3427,13 +3517,13 @@ msgstr "No se pudo denegar la aprobación del flujo de trabajo."
msgid "Failed to disassociate one or more groups."
msgstr "No se pudo disociar uno o más grupos."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "No se pudo disociar uno o más hosts."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "No se pudo disociar una o más instancias."
@@ -3441,7 +3531,7 @@ msgstr "No se pudo disociar una o más instancias."
msgid "Failed to disassociate one or more teams."
msgstr "No se pudo disociar uno o más equipos."
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "No se pudo obtener la configuración de inicio de sesión personalizada. En su lugar, se mostrarán los valores predeterminados del sistema."
@@ -3449,7 +3539,7 @@ msgstr "No se pudo obtener la configuración de inicio de sesión personalizada.
msgid "Failed to fetch the updated project data."
msgstr "No se han podido obtener los datos actualizados del proyecto."
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3467,7 +3557,7 @@ msgstr "No se pudo recuperar el objeto de recurso de nodo completo."
msgid "Failed to retrieve node credentials."
msgstr "No se pudieron recuperar las credenciales del nodo."
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "No se ha podido ejecutar una comprobación de estado en una o más instancias."
@@ -3480,11 +3570,11 @@ msgstr "No se pudo enviar la notificación de prueba."
msgid "Failed to sync inventory source."
msgstr "No se pudo sincronizar la fuente de inventario."
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "No se pudo sincronizar el proyecto."
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "No se pudieron sincronizar algunas o todas las fuentes de inventario."
@@ -3504,9 +3594,9 @@ msgstr "No se pudo alternar la notificación."
msgid "Failed to toggle schedule."
msgstr "No se pudo alternar la programación."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "No se pudo actualizar el ajuste de capacidad."
@@ -3515,7 +3605,7 @@ msgstr "No se pudo actualizar el ajuste de capacidad."
msgid "Failed to update survey."
msgstr "No se pudo actualizar la encuesta."
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "Error en el token de usuario."
@@ -3524,17 +3614,17 @@ msgstr "Error en el token de usuario."
msgid "Failure"
msgstr "Fallo"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "Falso"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "Febrero"
@@ -3558,11 +3648,11 @@ msgstr "El campo coincide con la expresión regular dada."
msgid "Field starts with value."
msgstr "El campo comienza con un valor."
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "Quinto"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "Diferencias del fichero"
@@ -3574,28 +3664,28 @@ msgstr "Se rechazó la carga de archivos. Seleccione un único archivo .json."
msgid "File, directory or script"
msgstr "Archivo, directorio o script"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "Filtrar por {name}"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "Hora de finalización"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "Finalizado"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "Primero"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3604,17 +3694,17 @@ msgstr "Primero"
msgid "First Name"
msgstr "Nombre"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "Primera ejecución"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "Nombre"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "Primero, seleccione una clave"
@@ -3636,56 +3726,64 @@ msgid "Follow"
msgstr "Seguir"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "Para las plantillas de trabajo, seleccione ejecutar para ejecutar\n"
-"el playbook. Seleccione marcar para marcar solo la sintaxis del playbook,\n"
-"probar la configuración del entorno e informar problemas sin\n"
-"ejecutar el playbook."
+#~ 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 ""
+#~ "Para las plantillas de trabajo, seleccione ejecutar para ejecutar\n"
+#~ "el playbook. Seleccione marcar para marcar solo la sintaxis del playbook,\n"
+#~ "probar la configuración del entorno e informar problemas sin\n"
+#~ "ejecutar el playbook."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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 "Para las plantillas de trabajo, seleccione ejecutar para ejecutar el playbook.\n"
+msgstr ""
+"Para las plantillas de trabajo, seleccione ejecutar para ejecutar el playbook.\n"
"Seleccione marcar para marcar solo la sintaxis del manual, probar\n"
"la configuración del entorno e informar problemas sin ejecutar el playbook."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "Para obtener más información, consulte la"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "Forks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "Cuarto"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "Información sobre la frecuencia"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "La frecuencia no coincide con un valor esperado"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "Vie"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "Viernes"
@@ -3697,7 +3795,7 @@ msgstr "Búsqueda difusa en los campos id, nombre o descripción."
msgid "Fuzzy search on name field."
msgstr "Búsqueda difusa en el campo del nombre."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Credenciales de Galaxy"
@@ -3706,7 +3804,7 @@ msgstr "Credenciales de Galaxy"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Las credenciales de Galaxy deben ser propiedad de una organización."
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "Obteniendo facts"
@@ -3721,13 +3819,14 @@ msgstr "Obtener suscripciones"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3765,17 +3864,17 @@ msgstr "Equipo GitHub"
msgid "GitHub settings"
msgstr "Configuración de GitHub"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "Disponible globalmente"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "El entorno de ejecución disponible globalmente no puede reasignarse a una organización específica"
@@ -3812,12 +3911,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Clave API de Grafana"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "URL de Grafana"
@@ -3833,7 +3932,7 @@ msgstr "Mayor o igual que la comparación."
msgid "Group"
msgstr "Grupo"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "Detalles del grupo"
@@ -3841,12 +3940,12 @@ msgstr "Detalles del grupo"
msgid "Group type"
msgstr "Tipo de grupo"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3855,13 +3954,13 @@ msgstr "Tipo de grupo"
msgid "Groups"
msgstr "Grupos"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "Cabeceras HTTP"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "Método HTTP"
@@ -3869,10 +3968,10 @@ msgstr "Método HTTP"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "Comprobación de estado"
+#~ msgid "Health Check"
+#~ msgstr "Comprobación de estado"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "Saludable"
@@ -3903,23 +4002,23 @@ msgstr "Hop"
msgid "Hop node"
msgstr "Hop node"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "Servidor"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "Servidor Async fallido"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "Servidor Async OK"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "Clave de configuración del servidor"
@@ -3927,61 +4026,61 @@ msgstr "Clave de configuración del servidor"
msgid "Host Count"
msgstr "Recuento de hosts"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "Detalles del host"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "Servidor fallido"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "Fallo del servidor"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "Filtro de host"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "Nombre de Host"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "Servidor OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "Sondeo al servidor"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "Reintentar servidor"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "Servidor omitido"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "Host iniciado"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "Servidor no alcanzable"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "Detalles del host"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "Modal de detalles del host"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "No se encontró el host."
@@ -3991,20 +4090,20 @@ msgid "Host status information for this job is unavailable."
msgstr "La información de estado del host para esta tarea no se encuentra disponible."
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4029,7 +4128,7 @@ msgstr "Hosts importados"
msgid "Hosts remaining"
msgstr "Hosts restantes"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "Hora"
@@ -4046,25 +4145,25 @@ msgstr "Hybrid"
msgid "Hybrid node"
msgstr "Hybrid node"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "ID del panel de control"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "ID de panel"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "ID del panel de control (opcional)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "ID del panel (opcional)"
@@ -4073,51 +4172,52 @@ msgstr "ID del panel (opcional)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "Alias en IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "Dirección del servidor IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "Puerto del servidor IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "NIC de IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "Dirección del servidor IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "Contraseña del servidor IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "Puerto del servidor IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "URL de icono"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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 "Si las opciones están marcadas, se eliminarán\n"
+msgstr ""
+"Si las opciones están marcadas, se eliminarán\n"
"todas las variables de los grupos secundarios y se reemplazarán\n"
"con aquellas que se hallen en la fuente externa."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4126,7 +4226,8 @@ msgid ""
"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 "Si las opciones están marcadas, cualquier grupo o host que estuvo\n"
+msgstr ""
+"Si las opciones están marcadas, cualquier grupo o host que estuvo\n"
"presente previamente en la fuente externa pero que ahora se eliminó,\n"
"se eliminará del inventario. Los hosts y grupos que no fueron\n"
"gestionados por la fuente de inventario serán promovidos al siguiente\n"
@@ -4135,54 +4236,75 @@ msgstr "Si las opciones están marcadas, cualquier grupo o host que estuvo\n"
"para el inventario."
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "Si se habilita esta opción, ejecute este playbook\n"
-"como administrador."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr ""
+#~ "Si se habilita esta opción, ejecute este playbook\n"
+#~ "como administrador."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
"--diff mode."
-msgstr "Si se habilita esta opción, muestre los cambios realizados\n"
+msgstr ""
+"Si se habilita esta opción, muestre los cambios realizados\n"
"por las tareas de Ansible, donde sea compatible. Esto es equivalente\n"
"al modo --diff de Ansible."
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "Si se habilita esta opción, muestre los cambios realizados\n"
-"por las tareas de Ansible, donde sea compatible. Esto es equivalente\n"
-"al modo --diff de Ansible."
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr ""
+#~ "Si se habilita esta opción, muestre los cambios realizados\n"
+#~ "por las tareas de Ansible, donde sea compatible. Esto es equivalente\n"
+#~ "al modo --diff de Ansible."
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "Si se habilita esta opción, muestre los cambios realizados por las tareas de Ansible, donde sea compatible. Esto es equivalente al modo --diff de Ansible."
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "Si se habilita esta opción, se permitirá la ejecución\n"
-"simultánea de esta plantilla de trabajo."
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr ""
+#~ "Si se habilita esta opción, se permitirá la ejecución\n"
+#~ "simultánea de esta plantilla de trabajo."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "Si se habilita esta opción, se permitirá la ejecución de esta plantilla de flujo de trabajo en paralelo."
#: screens/Template/shared/JobTemplateForm.js:611
-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 "Si se habilita esta opción, se almacenarán los eventos recopilados para que estén visibles en el nivel de host. Los eventos persisten y\n"
-"se insertan en la caché de eventos en tiempo de ejecución."
+#~ 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 ""
+#~ "Si se habilita esta opción, se almacenarán los eventos recopilados para que estén visibles en el nivel de host. Los eventos persisten y\n"
+#~ "se insertan en la caché de eventos en tiempo de ejecución."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "Si se especifica, este campo se mostrará en el nodo en lugar del nombre del recurso cuando se vea el flujo de trabajo"
@@ -4194,34 +4316,36 @@ msgstr "Si está listo para actualizar o renovar, <0>póngase en contacto con no
msgid ""
"If you do not have a subscription, you can visit\n"
"Red Hat to obtain a trial subscription."
-msgstr "Si no tiene una suscripción, puede visitar\n"
+msgstr ""
+"Si no tiene una suscripción, puede visitar\n"
"Red Hat para obtener una suscripción de prueba."
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:46
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "Si solo desea eliminar el acceso de este usuario específico, elimínelo del equipo."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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 "Si desea que la fuente de inventario se actualice al\n"
+msgstr ""
+"Si desea que la fuente de inventario se actualice al\n"
"ejecutar y en la actualización del proyecto, haga clic en Actualizar al ejecutar, y también vaya a"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "Imagen"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "Incluyendo fichero"
@@ -4230,7 +4354,8 @@ 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 "Indica si un host está disponible y debe ser incluido en la ejecución de\n"
+msgstr ""
+"Indica si un host está disponible y debe ser incluido en la ejecución de\n"
"tareas. Para los hosts que forman parte de un inventario externo, esto se puede\n"
"restablecer mediante el proceso de sincronización del inventario."
@@ -4242,17 +4367,17 @@ msgstr "Información"
msgid "Initiated By"
msgstr "Inicializado por"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "Inicializado por"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "Inicializado por (nombre de usuario)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "Configuración del inyector"
@@ -4262,18 +4387,22 @@ msgstr "Configuración del inyector"
msgid "Input configuration"
msgstr "Configuración de entrada"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Credencial de Insights"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insight para Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insight para Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Panel de control de Insight para Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Panel de control de Insight para Ansible Automation Platform"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4283,27 +4412,27 @@ msgstr "ID del sistema de Insights"
msgid "Instance"
msgstr "Instancia"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "Filtros de instancias"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "Grupo de instancias"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "Grupos de instancias"
@@ -4311,7 +4440,7 @@ msgstr "Grupos de instancias"
msgid "Instance ID"
msgstr "ID de instancia"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "Detalles de la instancia"
@@ -4320,7 +4449,7 @@ msgstr "Detalles de la instancia"
msgid "Instance group"
msgstr "Grupo de instancias"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "No se encontró el grupo de instancias."
@@ -4329,21 +4458,21 @@ msgstr "No se encontró el grupo de instancias."
msgid "Instance group used capacity"
msgstr "Capacidad utilizada del grupo de instancias"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "Grupos de instancias"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "Instancias"
@@ -4367,15 +4496,15 @@ msgstr "Objetivo de enlace no válido. No se puede enlazar con nodos secundarios
msgid "Invalid time format"
msgstr "Formato de hora no válido"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "Nombre de usuario o contraseña no válidos. Intente de nuevo."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4391,36 +4520,38 @@ msgstr "No se pueden copiar los inventarios con fuentes"
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "Inventario"
@@ -4428,7 +4559,7 @@ msgstr "Inventario"
msgid "Inventory (Name)"
msgstr "Inventario (Nombre)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "Archivo de inventario"
@@ -4436,35 +4567,35 @@ msgstr "Archivo de inventario"
msgid "Inventory ID"
msgstr "ID de inventario"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "Fuente de inventario"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "Proyecto de fuente de inventario"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "Sincronización de fuentes de inventario"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "Error en la sincronización de fuentes de inventario"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "Fuentes de inventario"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "Sincronización de inventario"
@@ -4480,12 +4611,12 @@ msgstr "Actualización del inventario"
msgid "Inventory copied successfully"
msgstr "Inventory copied successfully"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "Archivo de inventario"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "No se encontró el inventario."
@@ -4497,23 +4628,23 @@ msgstr "Sincronización de inventario"
msgid "Inventory sync failures"
msgstr "Errores de sincronización de inventario"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "Expandido"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "No se expande"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "Elemento fallido"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "Elemento OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "Elemento omitido"
@@ -4527,49 +4658,50 @@ msgid "Items per page"
msgstr "Elementos por página"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "ID DE TAREA:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "Pestaña JSON"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "Enero"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "Tarea"
+#~ msgid "Job"
+#~ msgstr "Tarea"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "Error en la cancelación de tarea"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "Error en la eliminación de tareas"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "Identificación del trabajo"
@@ -4578,33 +4710,33 @@ msgid "Job Runs"
msgstr "Ejecuciones de trabajo"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "Fracción de tareas"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "Fraccionamiento de los trabajos principales"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "Fraccionamiento de trabajos"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "Estado de la tarea"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "Etiquetas de trabajo"
@@ -4613,9 +4745,9 @@ msgstr "Etiquetas de trabajo"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "Plantilla de trabajo"
@@ -4623,13 +4755,13 @@ msgstr "Plantilla de trabajo"
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 "Las credenciales predeterminadas de la plantilla de trabajo se deben reemplazar por una del mismo tipo. Seleccione una credencial de los siguientes tipos para continuar: {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4644,15 +4776,15 @@ msgstr "Las plantillas de trabajo en las que falta un inventario o un proyecto n
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "Las plantillas de trabajo con credenciales que solicitan contraseñas no pueden seleccionarse al crear o modificar nodos"
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "Tipo de trabajo"
@@ -4664,35 +4796,35 @@ msgstr "Estado de la tarea"
msgid "Job status graph tab"
msgstr "Pestaña del gráfico de estado de la tarea"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "Plantillas de trabajo"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "Trabajos"
@@ -4700,27 +4832,27 @@ msgstr "Trabajos"
msgid "Jobs settings"
msgstr "Configuración de las tareas"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "Julio"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "Junio"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "Clave"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "Seleccionar clave"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "Escritura anticipada de la clave"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "Palabra clave"
@@ -4777,44 +4909,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "Label"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "Nombre de la etiqueta"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "Etiquetas"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "Último"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "Última comprobación de estado"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "Último estado de la tarea"
@@ -4822,36 +4955,36 @@ msgstr "Último estado de la tarea"
msgid "Last Login"
msgstr "Último inicio de sesión"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "Último modificado"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4860,12 +4993,12 @@ msgstr "Último modificado"
msgid "Last Name"
msgstr "Apellido"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "Último ejecutado"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "Última ejecución"
@@ -4873,19 +5006,19 @@ msgstr "Última ejecución"
msgid "Last job"
msgstr "Última tarea"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "Última modificación"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "Apellido"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "Última utilización"
@@ -4893,18 +5026,18 @@ msgstr "Última utilización"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "Ejecutar"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "Ejecutar tarea de gestión"
+#~ msgid "Launch Management Job"
+#~ msgstr "Ejecutar tarea de gestión"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "Ejecutar plantilla"
@@ -4917,7 +5050,7 @@ msgstr "Ejecutar plantilla"
msgid "Launch management job"
msgstr "Ejecutar tarea de gestión"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "Ejecutar plantilla"
@@ -4934,15 +5067,19 @@ msgstr "Ejecutar | {0}"
msgid "Launched By"
msgstr "Ejecutado por"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "Ejecutado por (nombre de usuario)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "Más información sobre Insights para Ansible Automation Platform"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "Más información sobre Insights para Ansible Automation Platform"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "Deje este campo en blanco para que el entorno de ejecución esté disponible globalmente."
@@ -4961,19 +5098,20 @@ msgstr "Menor que la comparación."
msgid "Less than or equal to comparison."
msgstr "Menor o igual que la comparación."
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "Límite"
@@ -4989,15 +5127,15 @@ msgstr "Cargando"
msgid "Local"
msgstr "Local"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "Huso horario local"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "Huso horario local"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "Iniciar sesión"
@@ -5016,7 +5154,7 @@ msgid "Logout"
msgstr "Finalización de la sesión"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "Modal de búsqueda"
@@ -5032,9 +5170,9 @@ msgstr "Tipo de búsqueda"
msgid "Lookup typeahead"
msgstr "Escritura anticipada de la búsqueda"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "ÚLTIMA SINCRONIZACIÓN"
@@ -5042,11 +5180,11 @@ msgstr "ÚLTIMA SINCRONIZACIÓN"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "Credenciales de máquina"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "Gestionado"
@@ -5055,13 +5193,13 @@ msgstr "Gestionado"
msgid "Managed nodes"
msgstr "Nodos gestionados"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "Trabajo de gestión"
@@ -5070,7 +5208,7 @@ msgstr "Trabajo de gestión"
msgid "Management Jobs"
msgstr "Trabajos de gestión"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "Tarea de gestión"
@@ -5079,11 +5217,11 @@ msgstr "Tarea de gestión"
msgid "Management job launch error"
msgstr "Error de ejecución de la tarea de gestión"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "No se encontró la tarea de gestión."
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "Tareas de gestión"
@@ -5091,18 +5229,19 @@ msgstr "Tareas de gestión"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "Manual"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "Marzo"
@@ -5111,20 +5250,20 @@ msgstr "Marzo"
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "Número máximo de hosts"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "Máximo"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "Longitud máxima"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "Mayo"
@@ -5149,28 +5288,31 @@ msgstr "Métrica"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "Mínimo"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "Longitud mínima"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "Cantidad mínima de instancias que se asignará automáticamente a este grupo cuando aparezcan nuevas instancias en línea."
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
msgid ""
"Minimum percentage of all instances that will be automatically\n"
"assigned to this group when new instances come online."
-msgstr "Porcentaje mínimo de todas las instancias que se asignará automáticamente\n"
+msgstr ""
+"Porcentaje mínimo de todas las instancias que se asignará automáticamente\n"
"a este grupo cuando aparezcan nuevas instancias en línea."
-#: components/Schedule/shared/ScheduleForm.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "Minuto"
@@ -5191,23 +5333,23 @@ msgid "Miscellaneous System settings"
msgstr "Configuración de sistemas varios"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "No encontrado"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "Recurso no encontrado"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "Modificado"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5218,7 +5360,7 @@ msgstr "Modificado"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5227,7 +5369,7 @@ msgstr "Modificado"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5255,33 +5397,33 @@ msgstr "Modificado por (nombre de usuario)"
msgid "Modified by (username)"
msgstr "Modificado por (nombre de usuario)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "Módulo"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "Argumentos del módulo"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "Nombre del módulo"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "Lun"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "Lunes"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "Mes"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "Más información"
@@ -5289,13 +5431,13 @@ msgstr "Más información"
msgid "More information for"
msgstr "Más información para"
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "Selección múltiple"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "Selección múltiple"
@@ -5307,7 +5449,7 @@ msgstr "Opciones de selección múltiple"
msgid "Multiple Choice (single select)"
msgstr "Selección múltiple"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "Opciones de selección múltiple"
@@ -5315,13 +5457,13 @@ msgstr "Opciones de selección múltiple"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5353,15 +5495,15 @@ msgstr "Opciones de selección múltiple"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5377,18 +5519,18 @@ msgstr "Opciones de selección múltiple"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5398,14 +5540,14 @@ msgstr "Opciones de selección múltiple"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5420,8 +5562,8 @@ msgstr "Opciones de selección múltiple"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5451,15 +5593,15 @@ msgstr "Opciones de selección múltiple"
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5482,40 +5624,40 @@ msgstr "Opciones de selección múltiple"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5523,10 +5665,10 @@ msgstr "Opciones de selección múltiple"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "Nombre"
@@ -5534,9 +5676,9 @@ msgstr "Nombre"
msgid "Navigation"
msgstr "Navegación"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "Nunca"
@@ -5544,22 +5686,21 @@ msgstr "Nunca"
msgid "Never Updated"
msgstr "Nunca actualizado"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "No expira nunca"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "Nuevo"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5568,27 +5709,27 @@ msgstr "Nuevo"
msgid "Next"
msgstr "Siguiente"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "Siguiente ejecución"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "No"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "Ningún servidor corresponde"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "No más servidores"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "No hay ningún JSON disponible"
@@ -5597,12 +5738,12 @@ msgid "No Jobs"
msgstr "No hay tareas"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "No hay ningún error estándar disponible"
+#~ msgid "No Standard Error Available"
+#~ msgstr "No hay ningún error estándar disponible"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "No hay ninguna salida estándar disponible"
+#~ msgid "No Standard Out Available"
+#~ msgstr "No hay ninguna salida estándar disponible"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5612,7 +5753,7 @@ msgstr "No hay errores de sincronización de inventario."
msgid "No items found."
msgstr "No se encontraron elementos."
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "No hay datos de tareas disponibles."
@@ -5620,7 +5761,7 @@ msgstr "No hay datos de tareas disponibles."
msgid "No output found for this job."
msgstr "No output found for this job."
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "No se encontraron resultados"
@@ -5629,20 +5770,20 @@ msgstr "No se encontraron resultados"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "No se encontraron resultados"
@@ -5660,22 +5801,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "No se ha encontrado {pluralizedItemName}"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "Alias del nodo"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "Tipo de nodo"
@@ -5691,11 +5832,11 @@ msgstr "Tipo de nodo"
msgid "None"
msgstr "Ninguno"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "Ninguno (se ejecuta una vez)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "Ninguno (se ejecuta una vez)"
@@ -5718,12 +5859,13 @@ msgstr "No configurado"
msgid "Not configured for inventory sync."
msgstr "No configurado para la sincronización de inventario."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
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 "Tenga en cuenta que solo se pueden disociar los hosts asociados\n"
+msgstr ""
+"Tenga en cuenta que solo se pueden disociar los hosts asociados\n"
"directamente a este grupo. Los hosts en subgrupos deben ser disociados\n"
"del nivel de subgrupo al que pertenecen."
@@ -5734,7 +5876,8 @@ msgid ""
"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 "Tenga en cuenta que puede seguir viendo el grupo en la lista después de la disociación si el host también es un miembro de los elementos secundarios de ese grupo. Esta lista muestra todos los grupos a los que está asociado el host\n"
+msgstr ""
+"Tenga en cuenta que puede seguir viendo el grupo en la lista después de la disociación si el host también es un miembro de los elementos secundarios de ese grupo. Esta lista muestra todos los grupos a los que está asociado el host\n"
"directa e indirectamente."
#: components/Lookup/InstanceGroupsLookup.js:90
@@ -5745,11 +5888,11 @@ msgstr "Nota: El orden en que se seleccionan establece la precedencia de ejecuci
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "Nota: El orden de estas credenciales establece la precedencia para la sincronización y búsqueda del contenido. Seleccione más de una para habilitar el arrastre."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "Nota: Este campo asume que el nombre remoto es \"origin\"."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5757,14 +5900,15 @@ msgid ""
"not support password authentication when using SSH. GIT\n"
"read only protocol (git://) does not use username or\n"
"password information."
-msgstr "Note: Si utiliza el protocolo SSH para GitHub o Bitbucket,\n"
+msgstr ""
+"Note: Si utiliza el protocolo SSH para GitHub o Bitbucket,\n"
"ingrese solo la clave de SSH; no ingrese un nombre de usuario\n"
"(distinto de git). Además, GitHub y Bitbucket no admiten\n"
"la autenticación de contraseña cuando se utiliza SSH. El protocolo\n"
"de solo lectura de GIT (git://) no utiliza información\n"
"de nombre de usuario o contraseña."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "Color de notificación"
@@ -5773,11 +5917,11 @@ msgstr "Color de notificación"
msgid "Notification Template not found."
msgstr "No se encontró ninguna plantilla de notificación."
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "Plantillas de notificación"
@@ -5786,7 +5930,7 @@ msgstr "Plantillas de notificación"
msgid "Notification Type"
msgstr "Tipo de notificación"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "Color de la notificación"
@@ -5794,7 +5938,7 @@ msgstr "Color de la notificación"
msgid "Notification sent successfully"
msgstr "Notificación enviada correctamente"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "Notification test failed."
@@ -5809,25 +5953,25 @@ msgstr "Tipo de notificación"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "Notificación"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "Noviembre"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5835,69 +5979,75 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "Ocurrencias"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "Octubre"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "Off"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "On"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "Con error"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "Con éxito"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "En la fecha"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "En los días"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "Agrupar solo por"
@@ -5905,30 +6055,37 @@ msgstr "Agrupar solo por"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "Detalles de la opción"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
-msgstr "Etiquetas opcionales que describen esta plantilla de trabajo,\n"
+msgstr ""
+"Etiquetas opcionales que describen esta plantilla de trabajo,\n"
"como 'dev' o 'test'. Las etiquetas se pueden usar para agrupar\n"
"y filtrar plantillas de trabajo y tareas completadas."
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "Etiquetas opcionales que describen esta plantilla de trabajo,\n"
+msgstr ""
+"Etiquetas opcionales que describen esta plantilla de trabajo,\n"
"como 'dev' o 'test'. Las etiquetas se pueden usar para agrupar\n"
"y filtrar plantillas de trabajo y tareas completadas."
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "Opcionalmente, seleccione la credencial que se usará para devolver las actualizaciones de estado al servicio de Webhook."
@@ -5936,15 +6093,15 @@ msgstr "Opcionalmente, seleccione la credencial que se usará para devolver las
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "Opciones"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "Pedir"
@@ -5952,19 +6109,20 @@ msgstr "Pedir"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5972,19 +6130,19 @@ msgstr "Pedir"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5999,19 +6157,19 @@ msgstr "Organización (Nombre)"
msgid "Organization Name"
msgstr "Nombre de la organización"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "No se encontró la organización."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -6026,34 +6184,39 @@ msgstr "Otros avisos"
msgid "Out of compliance"
msgstr "No cumple con los requisitos"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "Salida"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "Anular"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "Sobrescribir grupos locales y servidores desde una fuente remota del inventario."
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "Sobrescribir las variables locales desde una fuente remota del inventario."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "Anular variables"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "PUBLICAR"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "COLOCAR"
@@ -6062,11 +6225,11 @@ msgstr "COLOCAR"
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Subdominio Pagerduty"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Subdominio Pagerduty"
@@ -6090,26 +6253,32 @@ msgstr "Desplazar hacia la derecha"
msgid "Pan Up"
msgstr "Desplazar hacia arriba"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Trasladar cambios adicionales en la línea de comandos. Hay dos parámetros de línea de comandos de Ansible:"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "Traslade variables de línea de comando adicionales al playbook. Este es el\n"
-"parámetro de línea de comando -e o --extra-vars para el playbook de Ansible.\n"
-"Proporcione pares de claves/valores utilizando YAML o JSON. Consulte la\n"
-"documentación para ver ejemplos de sintaxis."
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr ""
+#~ "Traslade variables de línea de comando adicionales al playbook. Este es el\n"
+#~ "parámetro de línea de comando -e o --extra-vars para el playbook de Ansible.\n"
+#~ "Proporcione pares de claves/valores utilizando YAML o JSON. Consulte la\n"
+#~ "documentación para ver ejemplos de sintaxis."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
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 "Traslade variables de línea de comando adicionales al cuaderno de estrategias. Este es el parámetro de línea de comando -e o --extra-vars para el cuaderno de estrategias de Ansible. Proporcione pares de claves/valores utilizando YAML o JSON. Consulte la documentación de Ansible Tower para ver ejemplos de sintaxis."
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6134,8 +6303,8 @@ msgstr "Últimas dos semanas"
msgid "Past week"
msgstr "Semana pasada"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "Pendiente"
@@ -6152,7 +6321,7 @@ msgstr "Eliminación pendiente"
msgid "Perform a search to define a host filter"
msgstr "Realice una búsqueda para definir un filtro de host"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "Token de acceso personal"
@@ -6161,7 +6330,7 @@ msgstr "Token de acceso personal"
msgid "Personal access token"
msgstr "Token de acceso personal"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "Jugada"
@@ -6169,45 +6338,45 @@ msgstr "Jugada"
msgid "Play Count"
msgstr "Recuento de jugadas"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "Jugada iniciada"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Comprobación del playbook"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Playbook terminado"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Directorio de playbook"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Ejecución de playbook"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Playbook iniciado"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6247,27 +6416,27 @@ msgstr "Haga clic en el botón de inicio para comenzar."
msgid "Please enter a valid URL"
msgstr "Introduzca una URL válida."
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "Por favor introduzca un valor."
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "Inicie sesión"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "Ejecute un trabajo para rellenar esta lista."
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "Seleccione un número de día entre 1 y 31."
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "Seleccione un inventario o marque la opción Preguntar al ejecutar."
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "Seleccione una fecha/hora de finalización que sea posterior a la fecha/hora de inicio."
@@ -6283,13 +6452,13 @@ msgstr "Please try another search using the filter above"
msgid "Please wait until the topology view is populated..."
msgstr "Please wait until the topology view is populated..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Anulación de las especificaciones del pod"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "Tipo de política"
@@ -6299,7 +6468,7 @@ msgstr "Tipo de política"
msgid "Policy instance minimum"
msgstr "Mínimo de instancias de políticas"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "Porcentaje de instancias de políticas"
@@ -6316,18 +6485,19 @@ msgid ""
"Refer to the documentation for further syntax and\n"
"examples. Refer to the Ansible Tower documentation for further syntax and\n"
"examples."
-msgstr "Complete los hosts para este inventario utilizando un filtro de búsqueda\n"
+msgstr ""
+"Complete los hosts para este inventario utilizando un filtro de búsqueda\n"
"de búsqueda. Ejemplo: ansible_facts.ansible_distribution: \"RedHat\".\n"
"Consulte la documentación para obtener más sintaxis y\n"
"ejemplos. Consulte la documentación de Ansible Tower para obtener más sintaxis y\n"
"ejemplos."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "Puerto"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "Condiciones previas para ejecutar este nodo cuando hay varios elementos primarios. Consulte"
@@ -6337,10 +6507,18 @@ msgid ""
"choice per line."
msgstr "Presione 'Intro' para agregar más opciones de respuesta. Una opción de respuesta por línea."
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Presione Intro para modificar. Presione ESC para detener la edición."
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6350,9 +6528,9 @@ msgstr "Vista previa"
msgid "Private key passphrase"
msgstr "Frase de paso para llave privada"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "Elevación de privilegios"
@@ -6360,40 +6538,44 @@ msgstr "Elevación de privilegios"
msgid "Privilege escalation password"
msgstr "Contraseña para la elevación de privilegios"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "Proyecto"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "Ruta base del proyecto"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "Seleccionar estado"
+#~ msgid "Project Status"
+#~ msgstr "Seleccionar estado"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "Sincronización del proyecto"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "Error en la sincronización del proyecto"
@@ -6401,11 +6583,19 @@ msgstr "Error en la sincronización del proyecto"
msgid "Project Update"
msgstr "Actualización del proyecto"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "Project copied successfully"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "No se encontró el proyecto."
@@ -6415,12 +6605,12 @@ msgstr "Errores de sincronización del proyecto"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6431,18 +6621,18 @@ msgstr "Proyectos"
msgid "Promote Child Groups and Hosts"
msgstr "Promover grupos secundarios y hosts"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "Aviso"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "Anulaciones de avisos"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "Preguntar al ejecutar"
@@ -6450,43 +6640,50 @@ msgstr "Preguntar al ejecutar"
msgid "Prompt | {0}"
msgstr "Aviso | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "Valores solicitados"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
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 "Proporcione un patrón de host para limitar aún más la lista\n"
+msgstr ""
+"Proporcione un patrón de host para limitar aún más la lista\n"
"de hosts que serán gestionados o que se verán afectados por el playbook.\n"
"Se permiten distintos patrones. Consulte la documentación de Ansible\n"
"para obtener más información y ejemplos relacionados con los patrones."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
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 "Proporcione un patrón de host para limitar aúan más la lista de hosts\n"
+msgstr ""
+"Proporcione un patrón de host para limitar aúan más la lista de hosts\n"
"que serán gestionados o que se verán afectados por el playbook.\n"
"Se permiten distintos patrones. Consulte la documentación de Ansible\n"
"para obtener más información y ejemplos relacionados con los patrones."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "Proporcione un valor para este campo o seleccione la opción Preguntar al ejecutar."
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
-msgstr "Proporcione pares de clave/valor utilizando\n"
+msgstr ""
+"Proporcione pares de clave/valor utilizando\n"
"YAML o JSON."
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:191
@@ -6495,38 +6692,47 @@ msgid ""
"below and you can choose from a list of your available subscriptions.\n"
"The credentials you use will be stored for future use in\n"
"retrieving renewal or expanded subscriptions."
-msgstr "A continuación, proporcione sus credenciales de Red Hat o de Red Hat Satellite\n"
+msgstr ""
+"A continuación, proporcione sus credenciales de Red Hat o de Red Hat Satellite\n"
"para poder elegir de una lista de sus suscripciones disponibles.\n"
"Las credenciales que utilice se almacenarán para su uso futuro\n"
"en la recuperación de las suscripciones de renovación o ampliadas."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Proporcione sus credenciales de Red Hat o Red Hat Satellite para habilitar Insights para Ansible Automation Platform."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Proporcione sus credenciales de Red Hat o Red Hat Satellite para habilitar Insights para Ansible Automation Platform."
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "Dirección URL para las llamadas callback"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "Detalles de callback de aprovisionamiento"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "Callbacks de aprovisionamiento"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Extraer"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "Pregunta"
@@ -6538,14 +6744,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "Configuración de RADIUS"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "Lectura"
@@ -6565,9 +6771,9 @@ msgstr "Plantillas recientes"
msgid "Recent Templates list tab"
msgstr "Pestaña de la lista de plantillas recientes"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "Trabajos recientes"
@@ -6586,6 +6792,7 @@ msgstr "Plataforma Red Hat Ansible Automation"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6607,13 +6814,14 @@ msgstr "Manifiesto de suscripción de Red Hat"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "Redirigir URI"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "Redirigir URI"
+#~ msgid "Redirect uris"
+#~ msgstr "Redirigir URI"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6623,16 +6831,22 @@ msgstr "Redirigir al panel de control"
msgid "Redirecting to subscription detail"
msgstr "Redirigir al detalle de la suscripción"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "Consulte"
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "Consulte la documentación de Ansible para obtener detalles\n"
-"sobre el archivo de configuración."
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr ""
+#~ "Consulte la documentación de Ansible para obtener detalles\n"
+#~ "sobre el archivo de configuración."
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6650,25 +6864,26 @@ msgstr "Actualizar para revisión"
msgid "Refresh project revision"
msgstr "Actualizar la revisión del proyecto"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "Regiones"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "Credencial de registro"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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 "Expresión regular en la que solo se importarán los nombres de host que coincidan. El filtro se aplica como un paso posterior al procesamiento después de que se aplique cualquier filtro de complemento de inventario."
-#: screens/Inventory/Inventories.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "Grupos relacionados"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "Teclas relacionadas"
@@ -6683,8 +6898,8 @@ msgstr "Tipo de búsqueda relacionado typeahead"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "Relanzar"
@@ -6715,12 +6930,13 @@ msgstr "Relanzar utilizando los parámetros de host"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "Archivo remoto"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6739,11 +6955,11 @@ msgstr "Quitar enlace"
msgid "Remove Node {nodeName}"
msgstr "Quitar nodo {nodeName}"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "Eliminar cualquier modificación local antes de realizar una actualización."
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "Remove the current search related to ansible facts to enable another search using this key."
@@ -6759,15 +6975,19 @@ msgstr "Eliminar el chip de {0}"
msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch."
msgstr "Si quita este enlace, el resto de la rama quedará huérfano y hará que se ejecute inmediatamente en el lanzamiento."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "Frecuencia de repetición"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "Reemplazar"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "Reemplazar el campo con un valor nuevo"
@@ -6777,7 +6997,7 @@ msgid "Request subscription"
msgstr "Solicitar subscripción"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "Obligatorio"
@@ -6787,7 +7007,7 @@ msgid "Reset zoom"
msgstr "Reset zoom"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6798,7 +7018,7 @@ msgid "Resource deleted"
msgstr "Recurso eliminado"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "Recursos"
@@ -6810,20 +7030,21 @@ msgstr "Faltan recursos de esta plantilla."
msgid "Restore initial value."
msgstr "Restaurar el valor inicial."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "Recuperar el estado habilitado a partir del dict dado de las variables de host.\n"
+msgstr ""
+"Recuperar el estado habilitado a partir del dict dado de las variables de host.\n"
"La variable habilitada se puede especificar mediante notación de puntos,\n"
"por ejemplo: \"foo.bar\""
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "Volver"
@@ -6843,7 +7064,7 @@ msgstr "Muestra los resultados que cumple con este y otros filtros. Este es el t
msgid "Returns results that satisfy this one or any other filters."
msgstr "Muestra los resultados que cumplen con este o cualquier otro filtro."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6858,7 +7079,7 @@ msgstr "Revertir todo"
msgid "Revert all to default"
msgstr "Revertir todo a valores por defecto"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "Revertir el campo al valor guardado anteriormente"
@@ -6870,13 +7091,13 @@ msgstr "Revertir configuración"
msgid "Revert to factory default."
msgstr "Revertir a los valores predeterminados de fábrica."
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "Revisión"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "Revisión n°"
@@ -6896,56 +7117,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "Rol"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "Roles"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "Ejecutar"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "Ejecutar comando"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "Ejecutar una comprobación de la salud de la instancia"
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "Ejecutar comando ad hoc"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "Ejecutar comando"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "Ejecutar cada"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "Frecuencia de ejecución"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "Ejecutar el"
@@ -6953,25 +7181,30 @@ msgstr "Ejecutar el"
msgid "Run type"
msgstr "Tipo de ejecución"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "Ejecutándose"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "Handlers ejecutándose"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "Tareas en ejecución"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "Tareas en ejecución"
@@ -6997,7 +7230,7 @@ msgstr "SOCIAL"
msgid "SSH password"
msgstr "Contraseña de SSH"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "Conexión SSL"
@@ -7007,36 +7240,36 @@ msgid "START"
msgstr "INICIAR"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "ESTADO:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "Sáb"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "Sábado"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -7062,12 +7295,16 @@ msgstr "Guardado correctamente"
msgid "Schedule"
msgstr "Planificar"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "Detalles de la programación"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "Detalles de la programación"
@@ -7079,7 +7316,7 @@ msgstr "La programación está activa"
msgid "Schedule is inactive"
msgstr "La programación está inactiva"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "Falta una regla de programación"
@@ -7090,30 +7327,34 @@ msgstr "Programación no encontrada."
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "Programaciones"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "Ámbito"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "Desplazarse hasta el primero"
@@ -7131,7 +7372,7 @@ msgid "Scroll previous"
msgstr "Desplazarse hasta el anterior"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "Buscar"
@@ -7139,12 +7380,12 @@ msgstr "Buscar"
msgid "Search is disabled while the job is running"
msgstr "La búsqueda se desactiva durante la ejecución de la tarea"
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "Botón de envío de la búsqueda"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "Entrada de texto de búsqueda"
@@ -7152,24 +7393,24 @@ msgstr "Entrada de texto de búsqueda"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "Searching by ansible_facts requires special syntax. Refer to the"
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "Segundo"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "Segundos"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "Ver errores a la izquierda"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7185,7 +7426,7 @@ msgstr "Seleccionar tipo de credencial"
msgid "Select Groups"
msgstr "Seleccionar grupos"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "Seleccionar hosts"
@@ -7193,7 +7434,7 @@ msgstr "Seleccionar hosts"
msgid "Select Input"
msgstr "Seleccionar entrada"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "Seleccionar instancias"
@@ -7201,7 +7442,7 @@ msgstr "Seleccionar instancias"
msgid "Select Items"
msgstr "Seleccionar elementos"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "Seleccionar elementos de la lista"
@@ -7209,7 +7450,7 @@ msgstr "Seleccionar elementos de la lista"
msgid "Select Labels"
msgstr "Seleccionar etiquetas"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "Seleccionar los roles para aplicar"
@@ -7221,26 +7462,29 @@ msgstr "Seleccionar equipos"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "Seleccione una clave de cuenta de servicio con formato JSON para autocompletar los siguientes campos."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "Seleccionar un tipo de nodo"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "Seleccionar un tipo de recurso"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "Seleccione una rama para la plantilla de trabajo. Esta rama se aplica a\n"
-"todos los nodos de la plantilla de trabajo que indican una rama."
+#~ msgid ""
+#~ "Select a branch for the job template. This branch is applied to\n"
+#~ "all job template nodes that prompt for a branch."
+#~ msgstr ""
+#~ "Seleccione una rama para la plantilla de trabajo. Esta rama se aplica a\n"
+#~ "todos los nodos de la plantilla de trabajo que indican una rama."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:48
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch"
msgstr "Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que indican una rama."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que indican una rama."
@@ -7256,16 +7500,16 @@ msgstr "Seleccionar una tarea para cancelar"
msgid "Select a metric"
msgstr "Seleccionar una métrica"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "Seleccionar un módulo"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Seleccionar un playbook"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "Seleccione un proyecto antes de modificar el entorno de ejecución."
@@ -7274,8 +7518,8 @@ msgid "Select a question to delete"
msgstr "Seleccione una pregunta para eliminar"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "Seleccionar una fila para aprobar"
+#~ msgid "Select a row to approve"
+#~ msgstr "Seleccionar una fila para aprobar"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7283,10 +7527,10 @@ msgid "Select a row to delete"
msgstr "Seleccionar una fila para eliminar"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "Seleccionar una fila para denegar"
+#~ msgid "Select a row to deny"
+#~ msgstr "Seleccionar una fila para denegar"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "Seleccionar una fila para disociar"
@@ -7295,49 +7539,51 @@ msgid "Select a subscription"
msgstr "Seleccionar una suscripción"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "Seleccionar un valor para este campo"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Seleccione un servicio de webhook."
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "Seleccionar todo"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "Seleccionar un tipo de actividad"
@@ -7353,7 +7599,7 @@ msgstr "Seleccionar una instancia y una métrica para mostrar el gráfico"
msgid "Select an instance to run a health check."
msgstr "Seleccione una instancia para ejecutar una comprobación de estado."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "Seleccione un inventario para el flujo de trabajo. Este inventario se aplica a todos los nodos del flujo de trabajo que solicitan un inventario."
@@ -7361,37 +7607,48 @@ msgstr "Seleccione un inventario para el flujo de trabajo. Este inventario se ap
msgid "Select an option"
msgstr "Seleccione una opción"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "Seleccione una organización antes de modificar el entorno de ejecución predeterminado."
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "Seleccione las credenciales para acceder a los nodos en función de\n"
-"los cuales se ejecutará este trabajo. Solo puede seleccionar una credencial de cada tipo. Para las\n"
-"credenciales de máquina (SSH), si marca \"Preguntar al ejecutar\" sin seleccionar las credenciales,\n"
-"se le pedirá que seleccione una credencial de máquina en el momento de la ejecución. Si selecciona\n"
-"las credenciales y marca \"Preguntar al ejecutar\", las credenciales seleccionadas se convierten en las credenciales\n"
-"predeterminadas que pueden actualizarse en tiempo de ejecución."
+#~ msgid ""
+#~ "Select credentials for accessing 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 ""
+#~ "Seleccione las credenciales para acceder a los nodos en función de\n"
+#~ "los cuales se ejecutará este trabajo. Solo puede seleccionar una credencial de cada tipo. Para las\n"
+#~ "credenciales de máquina (SSH), si marca \"Preguntar al ejecutar\" sin seleccionar las credenciales,\n"
+#~ "se le pedirá que seleccione una credencial de máquina en el momento de la ejecución. Si selecciona\n"
+#~ "las credenciales y marca \"Preguntar al ejecutar\", las credenciales seleccionadas se convierten en las credenciales\n"
+#~ "predeterminadas que pueden actualizarse en tiempo de ejecución."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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 "Seleccione de la lista de directorios que se encuentran en\n"
+msgstr ""
+"Seleccione de la lista de directorios que se encuentran en\n"
"la ruta base del proyecto. La ruta base y el directorio del playbook\n"
"proporcionan la ruta completa utilizada para encontrar los playbooks."
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "Seleccionar elementos de la lista"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7407,13 +7664,13 @@ msgstr "Seleccione la(s) opción(es)"
msgid "Select period"
msgstr "Seleccionar periodo"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "Seleccionar los roles para aplicar"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "Seleccionar la ruta de origen"
@@ -7435,80 +7692,99 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Seleccione los grupos de instancias en los que se ejecutará este inventario."
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "Seleccione los grupos de instancias en los que se ejecutará\n"
-"esta plantilla de trabajo."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr ""
+#~ "Seleccione los grupos de instancias en los que se ejecutará\n"
+#~ "esta plantilla de trabajo."
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "Seleccione los grupos de instancias en los que se ejecutará esta organización."
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "Seleccione la aplicación a la que pertenecerá este token, o deje este campo vacío para crear un token de acceso personal."
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "Seleccione la aplicación a la que pertenecerá este token, o deje este campo vacío para crear un token de acceso personal."
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "Seleccione la credencial que desea utilizar cuando acceda a los hosts remotos para ejecutar el comando. Elija una credencial que contenga el nombre de usuario y la clave SSH o la contraseña que Ansible necesitará para iniciar sesión en los hosts remotos."
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "Seleccione el entorno de ejecución para esta plantilla de trabajo."
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
-msgstr "Seleccione el inventario que contenga los hosts que desea\n"
+msgstr ""
+"Seleccione el inventario que contenga los hosts que desea\n"
"que gestione esta tarea."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "Seleccione el archivo del inventario que sincronizará\n"
-"esta fuente. Puede seleccionar del menú desplegable\n"
-"o ingresar un archivo en la entrada."
+#~ 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 ""
+#~ "Seleccione el archivo del inventario que sincronizará\n"
+#~ "esta fuente. Puede seleccionar del menú desplegable\n"
+#~ "o ingresar un archivo en la entrada."
#: components/HostForm/HostForm.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "Seleccione el inventario al que pertenecerá este host."
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "Seleccionar el playbook a ser ejecutado por este trabajo."
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "Seleccione el proyecto que contiene el playbook\n"
-"que desea que ejecute esta tarea."
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr ""
+#~ "Seleccione el proyecto que contiene el playbook\n"
+#~ "que desea que ejecute esta tarea."
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "Seleccione su suscripción a Ansible Automation Platform para utilizarla."
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "Seleccionar {0}"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7530,7 +7806,7 @@ msgstr "Seleccionar {0}"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "Seleccionado"
@@ -7541,20 +7817,20 @@ msgstr "Seleccionado"
msgid "Selected Category"
msgstr "Categoría seleccionada"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "El intervalo de fechas seleccionado debe tener al menos 1 ocurrencia de horario."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "Dirección de correo del remitente"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "Correo electrónico del remitente"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "Septiembre"
@@ -7563,7 +7839,7 @@ msgid "Service account JSON file"
msgstr "Archivo JSON de la cuenta de servicio"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "Establecer un valor para este campo"
@@ -7575,7 +7851,7 @@ msgstr "Establecer cuántos días de datos debería ser retenidos."
msgid "Set preferences for data collection, logos, and logins"
msgstr "Establezca preferencias para la recopilación de datos, los logotipos y los inicios de sesión"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "Establecer la ruta de origen en"
@@ -7583,7 +7859,7 @@ msgstr "Establecer la ruta de origen en"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "Establezca la instancia habilitada o deshabilitada. Si se desactiva, los trabajos no se asignarán a esta instancia."
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "Establecer como Público o Confidencial según cuán seguro sea el dispositivo del cliente."
@@ -7591,7 +7867,7 @@ msgstr "Establecer como Público o Confidencial según cuán seguro sea el dispo
msgid "Set type"
msgstr "Establecer tipo"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "Establecer el tipo deshabilitado para las búsquedas difusas de campos de búsqueda relacionados"
@@ -7621,8 +7897,8 @@ msgstr "Nombre de la configuración"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "Ajustes"
@@ -7631,17 +7907,17 @@ msgstr "Ajustes"
msgid "Show"
msgstr "Mostrar"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "Mostrar cambios"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "Mostrar cambios"
@@ -7658,91 +7934,98 @@ msgstr "Mostrar menos"
msgid "Show only root groups"
msgstr "Mostrar solo los grupos raíz"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Iniciar sesión con Azure AD"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "Iniciar sesión con GitHub"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "Iniciar sesión con GitHub Enterprise"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "Iniciar sesión con organizaciones GitHub Enterprise"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "Iniciar sesión con equipos de GitHub Enterprise"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "Iniciar sesión con las organizaciones GitHub"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "Iniciar sesión con equipos GitHub"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Iniciar sesión con Google"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "Iniciar sesión con SAML"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "Iniciar sesión con SAML {samlIDP}"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "Selección de clave simple"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "Omitir etiquetas"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "La omisión de etiquetas resulta útil cuando tiene un playbook\n"
-"de gran tamaño y desea omitir partes específicas de la tarea\n"
-"o la jugada. Utilice comas para separar las distintas etiquetas.\n"
-"Consulte la documentación para obtener información detallada\n"
-"sobre el uso de etiquetas."
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr ""
+#~ "La omisión de etiquetas resulta útil cuando tiene un playbook\n"
+#~ "de gran tamaño y desea omitir partes específicas de la tarea\n"
+#~ "o la jugada. Utilice comas para separar las distintas etiquetas.\n"
+#~ "Consulte la documentación para obtener información detallada\n"
+#~ "sobre el uso de etiquetas."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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 "La omisión de etiquetas resulta útil cuando tiene un playbook\n"
+msgstr ""
+"La omisión de etiquetas resulta útil cuando tiene un playbook\n"
"de gran tamaño y desea omitir partes específicas de la tarea o la jugada.\n"
"Utilice comas para separar las distintas etiquetas. Consulte la documentación\n"
"de Ansible Tower para obtener información detallada sobre el uso de etiquetas."
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "Omitido"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "Omitido"
@@ -7764,15 +8047,15 @@ msgid "Smart Inventory not found."
msgstr "No se encontró el inventario inteligente."
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "Filtro de host inteligente"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "Inventario inteligente"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "Algunos de los pasos anteriores tienen errores"
@@ -7794,51 +8077,53 @@ msgid "Sort"
msgstr "Ordenar"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "Fuente"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "Rama de fuente de control"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "Rama/etiqueta/commit de fuente de control"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "Credencial de fuente de control"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "Refspec de fuente de control"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "Revisión del control de fuentes"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "Tipo de fuente de control"
@@ -7846,34 +8131,34 @@ msgstr "Tipo de fuente de control"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "URL de fuente de control"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "Actualización de fuente de control"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "Número de teléfono de la fuente"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "Variables de fuente"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "Tarea del flujo de trabajo de origen"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "Rama de fuente de control"
@@ -7881,12 +8166,12 @@ msgstr "Rama de fuente de control"
msgid "Source details"
msgstr "Detalles de la fuente"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "Número de teléfono de la fuente"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "Variables de fuente"
@@ -7894,48 +8179,50 @@ msgstr "Variables de fuente"
msgid "Sourced from a project"
msgstr "Extraído de un proyecto"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "Fuentes"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
-msgstr "Especifique los encabezados HTTP en formato JSON. Consulte la\n"
+msgstr ""
+"Especifique los encabezados HTTP en formato JSON. Consulte la\n"
"documentación de Ansible Tower para obtener ejemplos de sintaxis."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
-msgstr "Especifique un color para la notificación. Los colores aceptables son\n"
+msgstr ""
+"Especifique un color para la notificación. Los colores aceptables son\n"
"el código de color hexadecimal (ejemplo: #3af o #789abc)."
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "Especifique un alcance para el acceso al token"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "Especifique un alcance para el acceso al token"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "Especificar las condiciones en las que debe ejecutarse este nodo"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "Error estándar"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "Salida estándar"
+#~ msgid "Standard Out"
+#~ msgstr "Salida estándar"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "Pestaña de error estándar"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "Pestaña de salida estándar"
+#~ msgid "Standard out tab"
+#~ msgstr "Pestaña de salida estándar"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7944,7 +8231,7 @@ msgstr "Pestaña de salida estándar"
msgid "Start"
msgstr "Iniciar"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "Hora de inicio"
@@ -7953,16 +8240,16 @@ msgstr "Hora de inicio"
msgid "Start date"
msgstr "Fecha de inicio"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "Fecha/hora de inicio"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "Iniciar mensaje"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "Iniciar cuerpo del mensaje"
@@ -7979,27 +8266,27 @@ msgstr "Iniciar fuente de sincronización"
msgid "Start time"
msgstr "Hora de inicio"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "Iniciado"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -8007,9 +8294,9 @@ msgstr "Iniciado"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "Estado"
@@ -8027,7 +8314,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "Enviar"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -8035,7 +8322,8 @@ msgid ""
"the revision specified by the main project.\n"
"This is equivalent to specifying the --remote\n"
"flag to git submodule update."
-msgstr "Los submódulos realizarán el seguimiento del último commit en\n"
+msgstr ""
+"Los submódulos realizarán el seguimiento del último commit en\n"
"su rama maestra (u otra rama especificada en\n"
".gitmodules). De lo contrario, el proyecto principal mantendrá los submódulos en\n"
"la revisión especificada.\n"
@@ -8079,6 +8367,7 @@ msgstr "Tabla de suscripciones"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -8086,22 +8375,22 @@ msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "Correcto"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "Mensaje de éxito"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "Cuerpo del mensaje de éxito"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8111,24 +8400,24 @@ msgstr "Correctamente"
msgid "Successful jobs"
msgstr "Tareas exitosas"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "Copiado correctamente en el portapapeles"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "Dom"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "Domingo"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "Encuesta"
@@ -8140,7 +8429,7 @@ msgstr "Encuesta deshabilitada"
msgid "Survey Enabled"
msgstr "Encuesta habilitada"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "Orden de las preguntas de la encuesta"
@@ -8148,20 +8437,20 @@ msgstr "Orden de las preguntas de la encuesta"
msgid "Survey Toggle"
msgstr "Alternancia de encuestas"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "Modal de vista previa de la encuesta"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "Sincronizar"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "Sincronizar proyecto"
@@ -8175,11 +8464,11 @@ msgstr "Sincronizar todo"
msgid "Sync all sources"
msgstr "Sincronizar todas las fuentes"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "Error de sincronización"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "Sincronizar para revisión"
@@ -8207,7 +8496,7 @@ msgstr "Administrador del sistema"
msgid "System Auditor"
msgstr "Auditor del sistema"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "Advertencia del sistema"
@@ -8225,52 +8514,59 @@ msgid "TACACS+ settings"
msgstr "Configuración de TACACS+"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "Pestañas"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "Las etiquetas resultan útiles cuando tiene un playbook\n"
-"de gran tamaño y desea ejecutar una parte específica\n"
-"de la tarea o la jugada. Utilice comas para separar varias\n"
-"etiquetas. Consulte la documentación para obtener\n"
-"información detallada sobre el uso de etiquetas."
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr ""
+#~ "Las etiquetas resultan útiles cuando tiene un playbook\n"
+#~ "de gran tamaño y desea ejecutar una parte específica\n"
+#~ "de la tarea o la jugada. Utilice comas para separar varias\n"
+#~ "etiquetas. Consulte la documentación para obtener\n"
+#~ "información detallada sobre el uso de etiquetas."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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 "Las etiquetas resultan útiles cuando tiene un playbook de gran tamaño\n"
+msgstr ""
+"Las etiquetas resultan útiles cuando tiene un playbook de gran tamaño\n"
"y desea ejecutar una parte específica de la tarea o la jugada. Utilice comas\n"
"para separar varias etiquetas. Consulte la documentación de Ansible Tower\n"
"para obtener información detallada sobre el uso de etiquetas."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "Etiquetas para la anotación"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "Etiquetas para anotación (opcional)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "URL destino"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "Tarea"
@@ -8278,7 +8574,7 @@ msgstr "Tarea"
msgid "Task Count"
msgstr "Recuento de tareas"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "Tarea iniciada"
@@ -8295,24 +8591,24 @@ msgstr "Equipo"
msgid "Team Roles"
msgstr "Roles de equipo"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "No se encontró la tarea."
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8320,27 +8616,27 @@ msgstr "No se encontró la tarea."
msgid "Teams"
msgstr "Equipos"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "Plantilla"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "Template copied successfully"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "No se encontró la plantilla."
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8349,7 +8645,7 @@ msgstr "Plantillas"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "Probar"
@@ -8370,11 +8666,11 @@ msgid "Test passed"
msgstr "Prueba superada"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "Texto"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "Área de texto"
@@ -8382,105 +8678,171 @@ msgstr "Área de texto"
msgid "Textarea"
msgstr "Área de texto"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "No se encontró ese valor. Ingrese o seleccione un valor válido."
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "El"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "El tipo de subvención que el usuario debe utilizar para adquirir tokens para esta aplicación"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
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 "La cantidad de tiempo (en segundos) antes de que la notificación\n"
+msgstr ""
+"La cantidad de tiempo (en segundos) antes de que la notificación\n"
"de correo electrónico deje de intentar conectarse con el host\n"
"y caduque el tiempo de espera. Rangos de 1 a 120 segundos."
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "La cantidad de tiempo (en segundos) para ejecutar\n"
-"antes de que se cancele la tarea. Valores predeterminados\n"
-"en 0 para el tiempo de espera de la tarea."
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr ""
+#~ "La cantidad de tiempo (en segundos) para ejecutar\n"
+#~ "antes de que se cancele la tarea. Valores predeterminados\n"
+#~ "en 0 para el tiempo de espera de la tarea."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
-msgstr "La URL base del servidor de Grafana:\n"
+msgstr ""
+"La URL base del servidor de Grafana:\n"
"el punto de acceso /api/annotations se agregará automáticamente\n"
"a la URL base de Grafana."
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de proyecto, plantilla de trabajo o flujo de trabajo."
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "El entorno de ejecución que se utilizará para las tareas que utilizan este proyecto. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de plantilla de trabajo o flujo de trabajo."
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "El entorno de ejecución que se utilizará al lanzar\n"
-"esta plantilla de trabajo. El entorno de ejecución resuelto puede anularse asignando asignando explícitamente uno diferente a esta plantilla de trabajo."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+#~ "El entorno de ejecución que se utilizará al lanzar\n"
+#~ "esta plantilla de trabajo. El entorno de ejecución resuelto puede anularse asignando asignando explícitamente uno diferente a esta plantilla de trabajo."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "El primero extrae todas las referencias. El segundo\n"
+msgstr ""
+"El primero extrae todas las referencias. El segundo\n"
"extrae el número de solicitud de extracción 62 de Github; en este ejemplo,\n"
"la rama debe ser \"pull/62/head\"."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "La ubicación completa de la imagen, que incluye el registro de contenedores, el nombre de la imagen y la etiqueta de la versión."
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
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 "La cantidad máxima de hosts que puede administrar esta organización.\n"
+msgstr ""
+"La cantidad máxima de hosts que puede administrar esta organización.\n"
"El valor predeterminado es 0, que significa sin límite. Consulte\n"
"la documentación de Ansible para obtener más información detallada."
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "La cantidad de procesos paralelos o simultáneos para utilizar durante\n"
-"la ejecución del playbook. Un valor vacío, o un valor menor que 1,\n"
-"usará el valor predeterminado de Ansible que normalmente es 5. La cantidad\n"
-"predeterminada de bifurcaciones puede sobrescribirse con un cambio a"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 ""
+#~ "La cantidad de procesos paralelos o simultáneos para utilizar durante\n"
+#~ "la ejecución del playbook. Un valor vacío, o un valor menor que 1,\n"
+#~ "usará el valor predeterminado de Ansible que normalmente es 5. La cantidad\n"
+#~ "predeterminada de bifurcaciones puede sobrescribirse con un cambio a"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "La cantidad de procesos paralelos o simultáneos para utilizar durante la ejecución del playbook. Si no ingresa un valor, se utilizará el valor predeterminado del archivo de configuración de Ansible. Para obtener más información,"
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "No se pudo encontrar la página solicitada."
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "El patrón utilizado para dirigir los hosts en el inventario. Si se deja el campo en blanco, todos y * se dirigirán a todos los hosts del inventario. Para encontrar más información sobre los patrones de hosts de Ansible,"
@@ -8488,7 +8850,7 @@ msgstr "El patrón utilizado para dirigir los hosts en el inventario. Si se deja
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "El proyecto se está sincronizando actualmente y la revisión estará disponible una vez que se haya completado la sincronización."
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "El proyecto debe estar sincronizado antes de que una revisión esté disponible."
@@ -8506,12 +8868,13 @@ msgstr "Se ha eliminado el recurso asociado a este nodo."
msgid "The search filter did not produce any results…"
msgstr "The search filter did not produce any results…"
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
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 "El formato sugerido para los nombres de variables es minúsculas y\n"
+msgstr ""
+"El formato sugerido para los nombres de variables es minúsculas y\n"
"separados por guiones bajos (por ejemplo, foo_bar, user_id, host_name,\n"
"etc.). No se permiten los nombres de variables con espacios."
@@ -8523,7 +8886,8 @@ msgid ""
"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 "No hay directorios de playbook disponibles en {project_base_dir}.\n"
+msgstr ""
+"No hay directorios de playbook disponibles en {project_base_dir}.\n"
"O bien ese directorio está vacío, o todo el contenido ya está\n"
"asignado a otros proyectos. Cree un nuevo directorio allí y asegúrese de que los archivos de playbook puedan ser leídos por el usuario del sistema \"awx\", o haga que {brandName} recupere directamente sus playbooks desde\n"
"control de fuentes utilizando la opción de tipo de control de fuentes anterior."
@@ -8532,7 +8896,7 @@ msgstr "No hay directorios de playbook disponibles en {project_base_dir}.\n"
msgid "There must be a value in at least one input"
msgstr "Debe haber un valor en al menos una entrada"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "Hubo un problema al iniciar sesión. Inténtelo de nuevo."
@@ -8544,31 +8908,36 @@ msgstr "Se produjo un error al cargar este contenido. Vuelva a cargar la página
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "Se produjo un error al analizar el archivo. Compruebe el formato del archivo e inténtelo de nuevo."
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "Se produjo un error al guardar el flujo de trabajo."
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "Estos son los módulos que {brandName} admite para ejecutar comandos."
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "Estos son los niveles de detalle para la ejecución de comandos estándar que se admiten."
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "Estos argumentos se utilizan con el módulo especificado."
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "Estos argumentos se utilizan con el módulo especificado. Para encontrar información sobre {0}, haga clic en"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "Tercero"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "Este proyecto debe actualizarse"
@@ -8590,15 +8959,15 @@ msgstr "Esta acción disociará el siguiente rol de {0}:"
msgid "This action will disassociate the following:"
msgstr "Esta acción disociará lo siguiente:"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Este grupo de contenedores está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Esta credencial está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "Este tipo de credencial está siendo utilizado por algunas credenciales y no se puede eliminar"
@@ -8606,21 +8975,30 @@ msgstr "Este tipo de credencial está siendo utilizado por algunas credenciales
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "Estos datos se utilizan para mejorar\n"
-"futuras versiones del software y para proporcionar\n"
-"Información sobre la plataforma de automatización Ansible."
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr ""
+#~ "Estos datos se utilizan para mejorar\n"
+#~ "futuras versiones del software y para proporcionar\n"
+#~ "Información sobre la plataforma de automatización Ansible."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
"This data is used to enhance\n"
"future releases of the Tower Software and help\n"
"streamline customer experience and success."
-msgstr "Estos datos se utilizan para mejorar futuras versiones\n"
+msgstr ""
+"Estos datos se utilizan para mejorar futuras versiones\n"
"del software Tower y para ayudar a optimizar el éxito\n"
"y la experiencia del cliente."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Este entorno de ejecución está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?"
@@ -8629,17 +9007,17 @@ msgstr "Este entorno de ejecución está siendo utilizado por otros recursos. ¿
msgid "This feature is deprecated and will be removed in a future release."
msgstr "Esta función está obsoleta y se eliminará en una futura versión."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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 "Este campo se ignora a menos que se establezca una variable habilitada. Si la variable habilitada coincide con este valor, el host se habilitará en la importación."
#: components/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "Este campo no debe estar en blanco"
+#~ msgid "This field is must not be blank"
+#~ msgstr "Este campo no debe estar en blanco"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "Este campo no debe estar en blanco"
+#~ msgid "This field is must not be blank."
+#~ msgstr "Este campo no debe estar en blanco"
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8670,7 +9048,7 @@ msgstr "Este campo debe ser un número y tener un valor inferior a {max}"
msgid "This field must be a regular expression"
msgstr "Este campo debe ser una expresión regular"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "Este campo debe ser un número entero"
@@ -8683,12 +9061,13 @@ msgstr "Este campo debe tener al menos {0} caracteres"
msgid "This field must be at least {min} characters"
msgstr "Este campo debe tener al menos {min} caracteres"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "Este campo debe ser mayor que 0"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8696,6 +9075,10 @@ msgstr "Este campo debe ser mayor que 0"
msgid "This field must not be blank"
msgstr "Este campo no debe estar en blanco"
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "Este campo no debe contener espacios"
@@ -8712,7 +9095,7 @@ msgstr "Este campo no debe exceder los {max} caracteres"
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "Este campo se recuperará de un sistema externo de gestión de claves secretas utilizando la credencial especificada."
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Este grupo de instancias está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?"
@@ -8720,15 +9103,15 @@ msgstr "Este grupo de instancias está siendo utilizado por otros recursos. ¿Es
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "Este inventario se aplica a todos los nodos de este flujo de trabajo ({0}) que solicitan un inventario."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Este inventario está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr "Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?"
-#: screens/Application/Applications.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "Esta es la única vez que se mostrará la clave secreta del cliente."
@@ -8736,19 +9119,19 @@ msgstr "Esta es la única vez que se mostrará la clave secreta del cliente."
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "Esta es la única vez que se mostrará el valor del token y el valor del token de actualización asociado."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Esta plantilla de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "Esta organización está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Este proyecto está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "Este proyecto se está sincronizando y no se puede hacer clic en él hasta que el proceso de sincronización se haya completado"
@@ -8768,38 +9151,51 @@ msgstr "Este paso contiene errores"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "Este valor no coincide con la contraseña introducida anteriormente. Confirme la contraseña."
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
"their factory defaults. Are you sure you want to proceed?"
-msgstr "Esta operación revertirá todos los valores de configuración\n"
+msgstr ""
+"Esta operación revertirá todos los valores de configuración\n"
"a los valores predeterminados de fábrica. ¿Está seguro de desea continuar?"
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40
msgid "This workflow does not have any nodes configured."
msgstr "Este flujo de trabajo no tiene ningún nodo configurado."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Esta plantilla de trabajo del flujo de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?"
-#: components/Schedule/shared/FrequencyDetailSubform.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "Jue"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "Jueves"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "Duración"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8807,44 +9203,46 @@ msgid ""
"update. If it is older than Cache Timeout, it is not\n"
"considered current, and a new project update will be\n"
"performed."
-msgstr "Tiempo en segundos para considerar que\n"
+msgstr ""
+"Tiempo en segundos para considerar que\n"
"un proyecto es actual. Durante la ejecución de trabajos y callbacks,\n"
"la tarea del sistema evaluará la marca de tiempo de la última\n"
"actualización del proyecto. Si es anterior al tiempo de espera\n"
"de la caché, no se considera actual y se realizará una nueva\n"
"actualización del proyecto."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
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 "Tiempo en segundos para considerar que un proyecto es actual.\n"
+msgstr ""
+"Tiempo en segundos para considerar que un proyecto es actual.\n"
"Durante la ejecución de trabajos y callbacks, el sistema de tareas\n"
"evaluará la marca de tiempo de la última sincronización. Si es anterior\n"
"al tiempo de espera de la caché, no se considera actual\n"
"y se realizará una nueva sincronización del inventario."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "Tiempo de espera agotado"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "Tiempo de espera"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "Tiempo de espera en minutos"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "Tiempo de espera en segundos"
@@ -8852,11 +9250,11 @@ msgstr "Tiempo de espera en segundos"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "To create a smart inventory using ansible facts, go to the smart inventory screen."
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "Para reordenar las preguntas de la encuesta, arrástrelas y suéltelas en el lugar deseado."
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "Alternar leyenda"
@@ -8864,12 +9262,12 @@ msgstr "Alternar leyenda"
msgid "Toggle Password"
msgstr "Alternar contraseña"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "Alternar herramientas"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "Alternar host"
@@ -8908,7 +9306,7 @@ msgstr "Alternar programaciones"
msgid "Toggle tools"
msgstr "Alternar herramientas"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "Token"
@@ -8922,11 +9320,11 @@ msgstr "Información del token"
msgid "Token not found."
msgstr "No se encontró el token."
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8937,37 +9335,42 @@ msgid "Tools"
msgstr "Herramientas"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "Paginación superior"
+#~ msgid "Top Pagination"
+#~ msgstr "Paginación superior"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "Topology View"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "Tareas totales"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "Nodos totales"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "Tareas totales"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "Seguimiento de submódulos"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "Seguimiento del último commit de los submódulos en la rama"
@@ -8977,23 +9380,23 @@ msgid "Trial"
msgstr "Prueba"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "Verdadero"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "Mar"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "Martes"
@@ -9002,13 +9405,13 @@ msgstr "Martes"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -9016,13 +9419,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -9030,15 +9433,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -9054,7 +9457,7 @@ msgstr "Tipo"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "Detalles del tipo"
@@ -9072,11 +9475,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "Imposible modificar el inventario en un servidor."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "No disponible"
@@ -9094,7 +9501,7 @@ msgstr "Dejar de seguir a"
msgid "Unlimited"
msgstr "Ilimitado"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -9116,28 +9523,28 @@ msgstr "Cadena de días no reconocida"
msgid "Unsaved changes modal"
msgstr "Modal de cambios no guardados"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "Revisión de actualización durante el lanzamiento"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "Actualizar al ejecutar"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "Actualizar al actualizar el proyecto"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "Actualizar opciones"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "Revisión de la actualización en el lanzamiento del trabajo"
@@ -9145,7 +9552,7 @@ msgstr "Revisión de la actualización en el lanzamiento del trabajo"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "Actualizar la configuración de los trabajos en {brandName}"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Actualizar clave de Webhook"
@@ -9162,12 +9569,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "Cargue un manifiesto de suscripción de Red Hat que contenga su suscripción. Para generar su manifiesto de suscripción, vaya a las <0>asignaciones de suscripció0>n en el Portal del Cliente de Red Hat."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "Utilizar SSL"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "Utilizar TLS"
@@ -9176,24 +9583,46 @@ msgid ""
"Use custom messages to change the content of\n"
"notifications sent when a job starts, succeeds, or fails. Use\n"
"curly braces to access information about the job:"
-msgstr "Utilice los mensajes personalizados para cambiar el contenido de las notificaciones enviadas cuando una tarea se inicie, se realice correctamente o falle. Utilice llaves\n"
+msgstr ""
+"Utilice los mensajes personalizados para cambiar el contenido de las notificaciones enviadas cuando una tarea se inicie, se realice correctamente o falle. Utilice llaves\n"
"para acceder a la información sobre la tarea:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "Capacidad usada"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "Capacidad usada"
@@ -9232,34 +9661,39 @@ msgstr "Análisis de usuarios"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "Análisis de usuarios e Insights"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "Análisis de usuarios e Insights"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "Detalles del usuario"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "No se encontró el usuario."
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "Tokens de usuario"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9274,11 +9708,11 @@ msgstr "Usuario"
msgid "Username / password"
msgstr "Nombre de usuario/contraseña"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9290,35 +9724,44 @@ msgstr "Usuarios"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "Variables"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "Variables solicitadas"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Contraseña Vault"
@@ -9327,21 +9770,21 @@ msgstr "Contraseña Vault"
msgid "Vault password | {credId}"
msgstr "Contraseña Vault | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "Nivel de detalle"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "Nivel de detalle"
@@ -9353,8 +9796,8 @@ msgstr "Versión"
msgid "View Azure AD settings"
msgstr "Ver la configuración de Azure AD"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "Ver detalles de la credencial"
@@ -9370,15 +9813,15 @@ msgstr "Ver la configuración de GitHub"
msgid "View Google OAuth 2.0 settings"
msgstr "Ver la configuración de Google OAuth 2.0"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "Ver detalles del host"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "Detalles de la instancia"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9392,11 +9835,11 @@ msgstr "Ver grupos de inventario"
msgid "View Inventory Host Details"
msgstr "Ver detalles del host del inventario"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "Ver ejemplos de JSON en <0>www.json.org0>"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "Ver detalles de la tarea"
@@ -9420,11 +9863,11 @@ msgstr "Ver la configuración de la autenticación de varios"
msgid "View Miscellaneous System settings"
msgstr "Ver la configuración de sistemas varios"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "Ver detalles de la organización"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "Ver detalles del proyecto"
@@ -9445,8 +9888,8 @@ msgstr "Ver programaciones"
msgid "View Settings"
msgstr "Ver configuración"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "Mostrar el cuestionario"
@@ -9454,12 +9897,12 @@ msgstr "Mostrar el cuestionario"
msgid "View TACACS+ settings"
msgstr "Ver la configuración de TACACS+"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "Ver detalles del equipo"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "Ver detalles de la plantilla"
@@ -9467,7 +9910,7 @@ msgstr "Ver detalles de la plantilla"
msgid "View Tokens"
msgstr "Ver tokens"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "Ver detalles del usuario"
@@ -9475,11 +9918,11 @@ msgstr "Ver detalles del usuario"
msgid "View User Interface settings"
msgstr "Ver la configuración de la interfaz de usuario"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "Ver detalles de la aprobación del flujo de trabajo"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "Ver ejemplos de YAML en <0>docs.ansible.com0>"
@@ -9488,15 +9931,15 @@ msgstr "Ver ejemplos de YAML en <0>docs.ansible.com0>"
msgid "View activity stream"
msgstr "Ver el flujo de actividad"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "Ver todas las credenciales."
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "Ver todos los hosts."
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "Ver todos los inventarios."
@@ -9509,7 +9952,7 @@ msgstr "Ver todos los hosts de inventario."
msgid "View all Jobs"
msgstr "Ver todas las tareas"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "Ver todas las tareas."
@@ -9518,24 +9961,24 @@ msgstr "Ver todas las tareas."
msgid "View all Notification Templates."
msgstr "Ver todas las plantillas de notificación."
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "Ver todas las organizaciones."
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "Ver todos los proyectos."
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "Ver todos los equipos."
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "Ver todas las plantillas."
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "Ver todos los usuarios."
@@ -9543,24 +9986,24 @@ msgstr "Ver todos los usuarios."
msgid "View all Workflow Approvals."
msgstr "Ver todas las aprobaciones del flujo de trabajo."
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "Ver todas las aplicaciones."
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "Ver todos los tipos de credencial"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "Ver todos los entornos de ejecución"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "Ver todos los grupos de instancias"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "Ver todas las tareas de gestión"
@@ -9598,13 +10041,13 @@ msgid "View smart inventory host details"
msgstr "Ver detalles del host de inventario inteligente"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "Vistas"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "Visualizador"
@@ -9612,8 +10055,8 @@ msgstr "Visualizador"
msgid "WARNING:"
msgstr "ADVERTENCIA:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "Esperando"
@@ -9623,7 +10066,7 @@ msgid "Waiting for job output…"
msgstr "Waiting for job output…"
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "Advertencia"
@@ -9645,80 +10088,90 @@ msgstr "No pudimos localizar las suscripciones asociadas a esta cuenta."
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Credencial de Webhook"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Credenciales de Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Clave de Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Servicio de Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "URL de Webhook"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Detalles de Webhook"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Los servicios de Webhook pueden iniciar trabajos con esta plantilla de trabajo mediante una solicitud POST a esta URL."
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Los servicios de Webhook pueden usar esto como un secreto compartido."
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhooks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "Mié"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "Miércoles"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "Semana"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "Día de la semana"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "Día del fin de semana"
@@ -9726,28 +10179,31 @@ msgstr "Día del fin de semana"
msgid ""
"Welcome to Red Hat Ansible Automation Platform!\n"
"Please complete the steps below to activate your subscription."
-msgstr "¡Bienvenido a Red Hat Ansible Automation Platform!\n"
+msgstr ""
+"¡Bienvenido a Red Hat Ansible Automation Platform!\n"
"Complete los pasos a continuación para activar su suscripción."
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "Bienvenido a {brandName}"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
-msgstr "Cuando esta opción no esté marcada, se llevará a cabo una fusión,\n"
+msgstr ""
+"Cuando esta opción no esté marcada, se llevará a cabo una fusión,\n"
"que combinará las variables locales con aquellas halladas\n"
"en la fuente externa."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
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 "Cuando esta opción no esté marcada, los hosts y grupos secundarios\n"
+msgstr ""
+"Cuando esta opción no esté marcada, los hosts y grupos secundarios\n"
"locales que no se encuentren en la fuente externa no se modificarán\n"
"mediante el proceso de actualización del inventario."
@@ -9764,28 +10220,29 @@ msgid "Workflow Approval not found."
msgstr "No se encontró la aprobación del flujo de trabajo."
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "Aprobaciones del flujo de trabajo"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "Tarea en flujo de trabajo"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "Plantilla de trabajo para flujo de trabajo"
@@ -9809,22 +10266,22 @@ msgstr "Enlace del flujo de trabajo"
msgid "Workflow Template"
msgstr "Plantilla de flujo de trabajo"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "Mensaje de flujo de trabajo aprobado"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "Cuerpo del mensaje de flujo de trabajo aprobado"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "Mensaje de flujo de trabajo denegado"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "Cuerpo del mensaje de flujo de trabajo denegado"
@@ -9834,6 +10291,10 @@ msgstr "Cuerpo del mensaje de flujo de trabajo denegado"
msgid "Workflow documentation"
msgstr "Documentación del flujo de trabajo"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "Plantillas de trabajo del flujo de trabajo"
@@ -9846,49 +10307,49 @@ msgstr "Modal de enlace del flujo de trabajo"
msgid "Workflow node view modal"
msgstr "Modal de vista del nodo de flujo de trabajo"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "Mensaje de flujo de trabajo pendiente"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "Cuerpo del mensaje de flujo de trabajo pendiente"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "Mensaje de tiempo de espera agotado del flujo de trabajo"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "Cuerpo del mensaje de tiempo de espera agotado del flujo de trabajo"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "Escribir"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "Año"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "SÍ"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "No puede actuar sobre las siguientes aprobaciones de flujo de trabajo: {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "No puede actuar sobre las siguientes aprobaciones de flujo de trabajo: {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "No puede actuar sobre las siguientes aprobaciones de flujo de trabajo: {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "No puede actuar sobre las siguientes aprobaciones de flujo de trabajo: {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9902,7 +10363,7 @@ msgstr "No tiene permiso para eliminar los siguientes Grupos: {itemsUnableToDele
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "No tiene permiso para borrar {pluralizedItemName}: {itemsUnableToDelete}"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "No tiene permiso para desvincular lo siguiente: {itemsUnableToDisassociate}"
@@ -9910,10 +10371,11 @@ msgstr "No tiene permiso para desvincular lo siguiente: {itemsUnableToDisassocia
msgid ""
"You may apply a number of possible variables in the\n"
"message. For more information, refer to the"
-msgstr "Puede aplicar una serie de posibles variables en el\n"
+msgstr ""
+"Puede aplicar una serie de posibles variables en el\n"
"mensaje. Para obtener más información, consulte"
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "Su sesión ha expirado. Inicie sesión para continuar."
@@ -9939,18 +10401,18 @@ msgstr "Acercar"
msgid "Zoom out"
msgstr "Alejar"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "se generará una nueva clave de Webhook al guardar."
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "se generará una nueva URL de Webhook al guardar."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "y haga clic en Actualizar revisión al ejecutar"
@@ -9971,7 +10433,7 @@ msgstr "cancelar eliminación"
msgid "cancel edit login redirect"
msgstr "cancelar la edición de la redirección de inicio de sesión"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "comando"
@@ -10006,38 +10468,38 @@ msgid "disassociate"
msgstr "disociar"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "documentación"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "modificar"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "cifrado"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "para obtener más información."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "para obtener más información."
@@ -10045,15 +10507,24 @@ msgstr "para obtener más información."
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "aquí"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "aquí."
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "hosts"
@@ -10070,7 +10541,7 @@ msgstr "usuario ldap"
msgid "login type"
msgstr "tipo de inicio de sesión"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "min"
@@ -10083,11 +10554,11 @@ msgid "node"
msgstr "node"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "de"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "opción a"
@@ -10108,21 +10579,21 @@ msgstr "por página"
msgid "relaunch jobs"
msgstr "volver a ejecutar las tareas"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "seg"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "segundos"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "seleccionar módulo"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "seleccionar nivel de detalle"
+#~ msgid "select verbosity"
+#~ msgstr "seleccionar nivel de detalle"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -10132,8 +10603,8 @@ msgstr "desde"
msgid "social login"
msgstr "inicio de sesión social"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "rama de fuente de control"
@@ -10145,7 +10616,7 @@ msgstr "sistema"
msgid "timed out"
msgstr "agotado"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "alternar cambios"
@@ -10153,7 +10624,7 @@ msgstr "alternar cambios"
msgid "updated"
msgstr "actualizado"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "clave de Webhook de la plantilla de trabajo del flujo de trabajo"
@@ -10177,15 +10648,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10205,7 +10676,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10217,8 +10688,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10246,38 +10717,38 @@ msgstr "{brandName} Logotipo"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} por <0>{username}0>"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} min. {seconds} seg"
@@ -10303,4 +10774,4 @@ msgstr "{selectedItemsCount, plural, one {Click to run a health check on the sel
#: components/AppContainer/AppContainer.js:154
msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
-msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
+msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
diff --git a/awx/ui/src/locales/fr/messages.po b/awx/ui/src/locales/fr/messages.po
index c28fdc82e2..2c099b4d0f 100644
--- a/awx/ui/src/locales/fr/messages.po
+++ b/awx/ui/src/locales/fr/messages.po
@@ -1,4 +1,4 @@
-othermsgid ""
+msgid ""
msgstr ""
"POT-Creation-Date: 2018-12-10 10:08-0500\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(10 premiers seulement)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(Me le demander au lancement)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "* Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant le justificatif d'identité spécifié."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (project root)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (Normal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (Avertissement)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (info)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (Verbeux)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (Déboguer)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (Verbeux +)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (Déboguer)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (Débogage de la connexion)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (Débogage WinRM)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "Un manifeste d'abonnement est une exportation d'un abonnement Red Hat. P
msgid "ALL"
msgstr "TOUS"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "Service API/Clé d’intégration"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "Token API"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "Service API/Clé d’intégration"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "À propos de "
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "Accès"
@@ -158,12 +127,12 @@ msgstr "Accès"
msgid "Access Token Expiration"
msgstr "Expiration du jeton d'accès"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "SID de compte"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "Token de compte"
@@ -171,18 +140,19 @@ msgstr "Token de compte"
msgid "Action"
msgstr "Action"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "Action"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "Action"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "Action"
msgid "Actions"
msgstr "Actions"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "Activité"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "Flux d’activité"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "Sélecteur de type de flux d'activité"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "Acteur"
@@ -274,19 +244,19 @@ msgstr "Ajouter un lien"
msgid "Add Node"
msgstr "Ajouter un nœud"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "Ajouter une question"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "Ajouter des rôles"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "Ajouter des rôles d’équipe"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "Ajouter des rôles d'utilisateur"
@@ -331,7 +301,7 @@ msgstr "Ajouter un nouveau groupe"
msgid "Add new host"
msgstr "Ajouter un nouvel hôte"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "Ajouter un type de ressource"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "Ajouter un modèle de flux de travail"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "Administration"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "Avancé"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "Documentation sur la recherche avancée"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "Saisie de la valeur de la recherche avancée"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "Chaque fois qu’un projet est mis à jour et que la révision SCM est modifiée, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches liées un à job. Le but est le contenu statique, comme le format .ini de fichier d'inventaire Ansible."
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "Après le nombre d'occurrences"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "Modal d'alerte"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "Tous"
@@ -402,29 +372,29 @@ msgstr "Tous les types de tâche"
msgid "All jobs"
msgstr "Toutes les tâches"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "Autoriser le remplacement de la branche"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "Autoriser le remplacement de la branche"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr "Permet de modifier la branche de contrôle des sources ou la révision dans un modèle de job qui utilise ce projet."
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "Liste des URI autorisés, séparés par des espaces"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "Toujours"
@@ -448,27 +418,27 @@ msgstr "Documentation Ansible Tower"
msgid "Answer type"
msgstr "Type de réponse"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "Nom de variable de réponse"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "Quelconque"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "Application"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "Nom d'application"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "Informations sur l’application"
@@ -477,57 +447,58 @@ msgstr "Informations sur l’application"
msgid "Application name"
msgstr "Nom de l'application"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "Application non trouvée."
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "Applications"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "Applications & Jetons"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "Approbation"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "Approuver"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "Approuvé"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "Approuvé - {0}. Voir le flux d'activité pour plus d'informations."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "Approuvé par {0} - {1}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "Avril"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "Êtes-vous certain de vouloir annuler ce job ?"
@@ -571,16 +542,16 @@ msgstr "Êtes-vous sûr de vouloir supprimer {0} l’accès à {1}? Cela risque
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "Êtes-vous sûr de vouloir supprimer {0} l’accès de {username} ?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "Voulez-vous vraiment demander l'annulation de ce job ?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "Arguments"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "Artefacts"
@@ -602,7 +573,7 @@ msgstr "Association modale"
msgid "At least one value must be selected for this field."
msgstr "Au moins une valeur doit être sélectionnée pour ce champ."
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "Août"
@@ -614,18 +585,27 @@ msgstr "Authentification"
msgid "Authorization Code Expiration"
msgstr "Expiration du code d'autorisation"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "Type d'autorisation"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -634,8 +614,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Paramètres AD Azure"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -668,7 +648,7 @@ msgstr "Retour aux hôtes"
msgid "Back to Instance Groups"
msgstr "Retour aux groupes d'instances"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "Retour aux instances"
@@ -759,7 +739,7 @@ msgstr "Retour aux groupes d'instances"
msgid "Back to management jobs"
msgstr "Retour aux Jobs de gestion"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -767,11 +747,11 @@ msgid ""
"path used to locate playbooks."
msgstr "Chemin de base utilisé pour localiser les playbooks. Les répertoires localisés dans ce chemin sont répertoriés dans la liste déroulante des répertoires de playbooks. Le chemin de base et le répertoire de playbook sélectionnés fournissent ensemble le chemin complet servant à localiser les playbooks."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "Mot de passe d'auth de base"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -787,43 +767,47 @@ msgstr "Brand Image"
msgid "Browse"
msgstr "Navigation"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "Navigation...."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "Par défaut, nous collectons et transmettons à Red Hat des données analytiques sur l'utilisation du service. Il existe deux catégories de données collectées par le service. Pour plus d'informations, consultez cette page <0>Tower documentation0>. Décochez les cases suivantes pour désactiver cette fonctionnalité."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "Par défaut, nous collectons et transmettons à Red Hat des données analytiques sur l'utilisation du service. Il existe deux catégories de données collectées par le service. Pour plus d'informations, consultez cette page <0>Tower documentation0>. Décochez les cases suivantes pour désactiver cette fonctionnalité."
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "Expiration Délai d’attente du cache"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "Expiration du délai d’attente du cache"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "Expiration du délai d’attente du cache (secondes)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,11 +818,13 @@ msgstr "Expiration du délai d’attente du cache (secondes)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -859,7 +845,7 @@ msgstr "Expiration du délai d’attente du cache (secondes)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -868,32 +854,34 @@ msgstr "Expiration du délai d’attente du cache (secondes)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "Annuler"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "Annuler Sync Source d’inventaire"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "Annuler Job"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "Annuler Sync Projet"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "Annuler Sync"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "Annuler le job"
@@ -905,7 +893,7 @@ msgstr "Annuler les changements de liens"
msgid "Cancel link removal"
msgstr "Annuler la suppression d'un lien"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "Annuler la recherche"
@@ -931,19 +919,23 @@ msgid "Cancel subscription edit"
msgstr "Annuler l'édition de l'abonnement"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "Annuler {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "Annulé"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -959,10 +951,10 @@ msgstr "Impossible d’effectuer des bilans de fonctionnement sur les nœuds Hop
msgid "Capacity"
msgstr "Capacité"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -988,13 +980,13 @@ msgstr "Version non sensible à la casse de regex"
msgid "Case-insensitive version of startswith."
msgstr "Version non sensible à la casse de startswith."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
msgstr "Modifiez PROJECTS_ROOT lorsque vous déployez {brandName} pour changer cet emplacement."
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "Modifié"
@@ -1003,13 +995,13 @@ msgstr "Modifié"
msgid "Changes"
msgstr "Modifications"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "Canal"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "Vérifier"
@@ -1033,20 +1025,20 @@ msgstr "Choisissez un type de notification"
msgid "Choose a Playbook Directory"
msgstr "Choisissez un répertoire Playbook"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "Choisissez un type de contrôle à la source"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Choisir un service de webhook"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "Choisir un type de job"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "Choisissez un module"
@@ -1054,7 +1046,7 @@ msgstr "Choisissez un module"
msgid "Choose a source"
msgstr "Choisissez une source"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "Choisissez une méthode HTTP"
@@ -1073,20 +1065,20 @@ msgstr "Choisissez les rôles à appliquer aux ressources sélectionnées. Note
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 "Choisissez les ressources qui recevront de nouveaux rôles. Vous pourrez sélectionner les rôles à postuler lors de l'étape suivante. Notez que les ressources choisies ici recevront tous les rôles choisis à l'étape suivante."
-#: components/AddRole/AddResourceRole.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "Choisissez le type de ressource qui recevra de nouveaux rôles. Par exemple, si vous souhaitez ajouter de nouveaux rôles à un ensemble d'utilisateurs, veuillez choisir Utilisateurs et cliquer sur Suivant. Vous pourrez sélectionner les ressources spécifiques dans l'étape suivante."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "Nettoyer"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "Effacer"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "Effacer tous les filtres"
@@ -1099,7 +1091,7 @@ msgstr "Effacer l'abonnement"
msgid "Clear subscription selection"
msgstr "Effacer la sélection d'abonnement"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "Cliquez sur un nœud disponible pour créer un nouveau lien. Cliquez en dehors du graphique pour annuler."
@@ -1127,29 +1119,29 @@ msgstr "Cliquez pour réorganiser l'ordre des questions de l'enquête"
msgid "Click to toggle default value"
msgstr "Cliquez pour changer la valeur par défaut"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "Cliquez pour voir les détails de ce Job"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "ID du client"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "Identifiant client"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "Identifiant client"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "Question secrète du client"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "Type de client"
@@ -1178,24 +1170,36 @@ msgstr "Effondrer tous les événements de la tâche"
msgid "Collapse section"
msgstr "Effondrer une section"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "Commande"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "Conforme"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "Jobs parallèles"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1215,11 +1219,11 @@ msgstr "Confirmer Désactiver l'autorisation locale"
msgid "Confirm Password"
msgstr "Confirmer le mot de passe"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "Confirmer l'annulation du job"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "Confirmer l'annulation"
@@ -1251,7 +1255,7 @@ msgstr "Confirmer annuler tout"
msgid "Confirm selection"
msgstr "Confirmer la sélection"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "Groupe de conteneurs"
@@ -1283,31 +1287,40 @@ msgstr "Contrôle"
msgid "Control node"
msgstr "Noeud de contrôle"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "Contrôlez le niveau de sortie produit par Ansible pour les tâches d'actualisation de source d'inventaire."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook."
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook."
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook."
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "Convergence"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "Sélection Convergence"
@@ -1335,15 +1348,15 @@ msgstr "Copier l'inventaire"
msgid "Copy Notification Template"
msgstr "Copie du modèle de notification"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "Copier le projet"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "Copier le modèle"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "Copier la révision complète dans le Presse-papiers."
@@ -1352,33 +1365,35 @@ msgstr "Copier la révision complète dans le Presse-papiers."
msgid "Copyright"
msgstr "Copyright"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "Créer"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "Créer une nouvelle application"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "Créer de nouvelles informations d’identification"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "Créer un nouvel hôte"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "Créer un nouveau modèle de Job"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "Créer un nouveau modèle de notification"
@@ -1387,20 +1402,20 @@ msgstr "Créer un nouveau modèle de notification"
msgid "Create New Organization"
msgstr "Créer une nouvelle organisation"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "Créer un nouveau projet"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "Créer une nouvelle programmation"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "Créer une nouvelle équipe"
@@ -1409,7 +1424,7 @@ msgstr "Créer une nouvelle équipe"
msgid "Create New User"
msgstr "Créer un nouvel utilisateur"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "Créer un nouveau modèle de flux de travail"
@@ -1417,8 +1432,8 @@ msgstr "Créer un nouveau modèle de flux de travail"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "Créer un nouvel inventaire smart avec le filtre appliqué"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "Créer un nouveau groupe de conteneurs"
@@ -1435,30 +1450,30 @@ msgstr "Créer un nouveau type d'informations d'identification."
msgid "Create new execution environment"
msgstr "Créer un nouvel environnement d'exécution"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "Créer un nouveau groupe"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "Créer un nouvel hôte"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "Créer un nouveau groupe d'instances"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "Créer un nouvel inventaire"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "Créer un nouvel inventaire smart"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "Créer une nouvelle source"
@@ -1467,39 +1482,39 @@ msgid "Create user token"
msgstr "Créer un jeton d'utilisateur"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "Créé"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1510,7 +1525,7 @@ msgstr "Créé"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1519,7 +1534,7 @@ msgstr "Créé"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1547,24 +1562,23 @@ msgstr "Créé par (Nom d'utilisateur)"
msgid "Created by (username)"
msgstr "Créé par (nom d'utilisateur)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "Information d’identification"
@@ -1577,14 +1591,15 @@ msgstr "Sources en entrée des informations d'identification"
msgid "Credential Name"
msgstr "Nom d’identification"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "Type d'informations d’identification"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1592,11 +1607,11 @@ msgstr "Type d'informations d’identification"
msgid "Credential Types"
msgstr "Types d'informations d'identification"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "Informations d’identification copiées."
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "Informations d'identification introuvables."
@@ -1605,15 +1620,19 @@ msgstr "Informations d'identification introuvables."
msgid "Credential passwords"
msgstr "Mots de passes d’identification"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "Jeton pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \"Kubernetes/OpenShift API Bearer Token\". S'il est laissé vide, le compte de service du Pod sous-jacent sera utilisé."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "Identifiant pour s'authentifier auprès d'un registre de conteneur protégé."
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "Type d'informations d’identification non trouvé."
@@ -1622,20 +1641,20 @@ msgstr "Type d'informations d’identification non trouvé."
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "Informations d’identification"
@@ -1648,6 +1667,10 @@ msgstr "Les informations d'identification qui nécessitent un mot de passe au la
msgid "Current page"
msgstr "Page actuelle"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "Spécifications des pods personnalisés"
@@ -1662,7 +1685,7 @@ msgstr "L'environnement virtuel personnalisé {0} doit être remplacé par un en
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "L'environnement virtuel personnalisé {0} doit être remplacé par un environnement d'exécution. Pour plus d'informations sur la migration vers des environnements d'exécution, voir la <0>the documentation.0>."
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "L'environnement virtuel personnalisé {virtualEnvironment} doit être remplacé par un environnement d'exécution. Pour plus d'informations sur la migration vers des environnements d'exécution, voir la <0>the documentation.0>."
@@ -1685,7 +1708,7 @@ msgstr "SUPPRIMÉ"
msgid "Dashboard"
msgstr "Tableau de bord"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "Tableau de bord (toutes les activités)"
@@ -1697,14 +1720,14 @@ msgstr "Durée de conservation des données"
msgid "Date"
msgstr "Date"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "Jour"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "Nombre de jours pendant lesquels on peut conserver les données"
@@ -1720,11 +1743,11 @@ msgstr "Jours restants"
msgid "Days to keep"
msgstr "Jours conservation"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "Déboguer"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "Décembre"
@@ -1735,9 +1758,9 @@ msgstr "Décembre"
msgid "Default"
msgstr "Par défaut"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "Réponse(s) par défaut"
@@ -1745,9 +1768,9 @@ msgstr "Réponse(s) par défaut"
msgid "Default Execution Environment"
msgstr "Environnement d'exécution par défaut"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "Réponse par défaut"
@@ -1766,35 +1789,35 @@ msgstr "Définir les fonctions et fonctionnalités niveau système"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "Supprimer"
@@ -1802,42 +1825,42 @@ msgstr "Supprimer"
msgid "Delete All Groups and Hosts"
msgstr "Supprimer les groupes et les hôtes"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "Supprimer les informations d’identification"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "Supprimer l'environnement d'exécution"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "Supprimer l'hôte"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "Supprimer l’inventaire"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "Supprimer Job"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "Modèle de découpage de Job"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "Supprimer la notification"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "Supprimer l'organisation"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "Suppression du projet"
@@ -1845,7 +1868,7 @@ msgstr "Suppression du projet"
msgid "Delete Questions"
msgstr "Supprimer les questions"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "Supprimer la programmation"
@@ -1861,15 +1884,15 @@ msgstr "Supprimer l’équipe"
msgid "Delete User"
msgstr "Supprimer l’utilisateur"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "Supprimer un jeton d'utilisateur"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "Supprimer l'approbation du flux de travail"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "Supprimer le modèle de flux de travail "
@@ -1878,28 +1901,28 @@ msgstr "Supprimer le modèle de flux de travail "
msgid "Delete all nodes"
msgstr "Supprimer tous les nœuds"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "Supprimer l’application"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "Supprimer le type d'informations d’identification"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "Supprimer l'erreur"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "Supprimer un groupe d'instances"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "Supprimer la source de l'inventaire"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "Supprimer l'inventaire smart"
@@ -1907,7 +1930,7 @@ msgstr "Supprimer l'inventaire smart"
msgid "Delete survey question"
msgstr "Supprimer question de l'enquête"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1916,7 +1939,7 @@ msgid ""
msgstr "Supprimez le dépôt local dans son intégralité avant d'effectuer une mise à jour. En fonction de la taille du dépôt, cela peut augmenter considérablement le temps nécessaire pour effectuer une mise à jour."
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "Supprimez le projet avant la synchronisation."
@@ -1932,14 +1955,17 @@ msgstr "Supprimer ce nœud"
msgid "Delete {pluralizedItemName}?"
msgstr "Supprimer {pluralizedItemName} ?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "Supprimé"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1951,67 +1977,71 @@ msgstr "Erreur de suppression"
msgid "Deletion error"
msgstr "Erreur de suppression"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "Refusé"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "Refusé - {0}. Voir le flux d'activité pour plus d'informations."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "Refusé par {0} - {1}"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "Refuser"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "Obsolète"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2020,93 +2050,96 @@ msgstr "Obsolète"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "Description"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "Canaux de destination"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "Canaux ou utilisateurs de destination"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "Numéro(s) de SMS de destination"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "Numéro(s) de SMS de destination"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "Canaux de destination"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "Canaux ou utilisateurs de destination"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2141,53 +2174,53 @@ msgstr "Canaux ou utilisateurs de destination"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "Détails"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "Onglet Détails"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "Clés directes"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "Désactiver la vérification SSL"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "Désactiver la vérification SSL"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "Désactivés"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2202,12 +2235,12 @@ msgstr "Dissocier"
msgid "Disassociate group from host?"
msgstr "Dissocier le groupe de l'hôte ?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "Dissocier Hôte du Groupe"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "Dissocier l'instance du groupe d'instances ?"
@@ -2234,18 +2267,23 @@ msgid "Disassociate?"
msgstr "Dissocier ?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "Ignorez les modifications locales avant de synchroniser."
#: screens/Template/shared/JobTemplateForm.js:479
-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 "Diviser le travail effectué à l'aide de ce modèle de travail en un nombre spécifié de tranches de travail (job), chacune exécutant les mêmes tâches sur une partie de l'inventaire."
+#~ msgid ""
+#~ "Divide the work done by this job template\n"
+#~ "into the specified number of job slices, each running the\n"
+#~ "same tasks against a portion of the inventory."
+#~ msgstr "Diviser le travail effectué à l'aide de ce modèle de travail en un nombre spécifié de tranches de travail (job), chacune exécutant les mêmes tâches sur une partie de l'inventaire."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "Documentation."
@@ -2261,55 +2299,71 @@ msgstr "Terminé"
msgid "Download Output"
msgstr "Télécharger la sortie"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "Faites glisser un fichier ici ou naviguez pour le télécharger"
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "E-mail"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "Options d'email"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
msgid ""
"Each time a job runs using this inventory,\n"
"refresh the inventory from the selected source before\n"
"executing job tasks."
msgstr "Chaque fois qu’une tâche s’exécute avec cet inventaire, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches du job."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:96
+#: screens/Project/shared/Project.helptext.js:120
msgid ""
"Each time a job runs using this project, update the\n"
"revision of the project prior to starting the job."
msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise à jour du projet avant de démarrer le job."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2337,10 +2391,10 @@ msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2356,14 +2410,14 @@ msgstr "Modifier les informations d’identification"
msgid "Edit Credential Plugin Configuration"
msgstr "Modifier la configuration du plug-in Configuration"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2388,8 +2442,8 @@ msgstr "Modifier la configuration du plug-in Configuration"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "Modifier les détails"
@@ -2406,11 +2460,11 @@ msgstr "Modifier l'environnement d'exécution"
msgid "Edit Group"
msgstr "Modifier le groupe"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "Modifier l’hôte"
@@ -2445,18 +2499,18 @@ msgstr "Ordre d'édition"
msgid "Edit Organization"
msgstr "Modifier l'organisation"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "Modifier le projet"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "Modifier la question"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "Modifier la programmation"
@@ -2468,15 +2522,15 @@ msgstr "Modifier la source"
msgid "Edit Survey"
msgstr "Modifier le questionnaire"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "Modifier l’équipe"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "Modifier le modèle"
@@ -2497,12 +2551,12 @@ msgstr "Modifier le type d’identification"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "Modifier les détails"
@@ -2511,7 +2565,7 @@ msgstr "Modifier les détails"
msgid "Edit group"
msgstr "Modifier le groupe"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "Modifier l’hôte"
@@ -2533,13 +2587,13 @@ msgstr "Modifier ce lien"
msgid "Edit this node"
msgstr "Modifier ce nœud"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "Modifier le flux de travail"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "Écoulé"
@@ -2559,15 +2613,15 @@ msgstr "Temps écoulé (en secondes) pendant lequel la tâche s'est exécutée."
msgid "Email"
msgstr "Email"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "Options d'email"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "Activer les tâches parallèles"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "Utiliser le cache des facts"
@@ -2575,14 +2629,14 @@ msgstr "Utiliser le cache des facts"
msgid "Enable HTTPS certificate verification"
msgstr "Activer/désactiver la vérification de certificat HTTPS"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Activer le webhook"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "Activez le webhook pour ce modèle de flux de travail."
@@ -2594,8 +2648,8 @@ msgstr "Activer la journalisation externe"
msgid "Enable log system tracking facts individually"
msgstr "Activer le système de journalisation traçant des facts individuellement"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "Activer l’élévation des privilèges"
@@ -2603,7 +2657,7 @@ msgstr "Activer l’élévation des privilèges"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Activer la connexion simplifiée pour vos applications {brandName}"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "Activez le webhook pour ce modèle de tâche."
@@ -2613,29 +2667,29 @@ msgstr "Activez le webhook pour ce modèle de tâche."
msgid "Enabled"
msgstr "Activé"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "Options activées"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "Valeur activée"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "Variable activée"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2644,19 +2698,23 @@ msgid ""
msgstr "Active la création d’une URL de rappels d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l’aide de ce modèle de tâche."
#: screens/Template/shared/JobTemplateForm.js:568
-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 "Active la création d’une URL de rappels d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l’aide de ce modèle de tâche."
+#~ 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 "Active la création d’une URL de rappels d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l’aide de ce modèle de tâche."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "Crypté"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "Fin"
@@ -2668,7 +2726,7 @@ msgstr "Contrat de licence utilisateur"
msgid "End date"
msgstr "Date de fin"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "Date/Heure de fin"
@@ -2704,96 +2762,101 @@ msgid ""
msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
#: screens/Inventory/shared/InventoryForm.js:92
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
-msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
+#~ msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "Entrez une balise d'annotation par ligne, sans virgule."
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "Entrez une balise d'annotation par ligne, sans virgule."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "Saisir un canal IRC ou un nom d'utilisateur par ligne. Le symbole dièse (#) pour les canaux et (@) pour le utilisateurs, ne sont pas nécessaires."
+#~ msgid ""
+#~ "Enter one IRC channel or username per line. The pound\n"
+#~ "symbol (#) for channels, and the at (@) symbol for users, are not\n"
+#~ "required."
+#~ msgstr "Saisir un canal IRC ou un nom d'utilisateur par ligne. Le symbole dièse (#) pour les canaux et (@) pour le utilisateurs, ne sont pas nécessaires."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "Saisissez un canal Slack par ligne. Le symbole dièse (#)\n"
-"est obligatoire pour les canaux. Pour répondre ou démarrer un fil de discussion sur un message spécifique, ajoutez l'Id du message parent au canal où l'Id du message parent est composé de 16 chiffres. Un point (.) doit être inséré manuellement après le 10ème chiffre. ex : #destination-channel, 1231257890.006423. Voir Slack"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr ""
+#~ "Saisissez un canal Slack par ligne. Le symbole dièse (#)\n"
+#~ "est obligatoire pour les canaux. Pour répondre ou démarrer un fil de discussion sur un message spécifique, ajoutez l'Id du message parent au canal où l'Id du message parent est composé de 16 chiffres. Un point (.) doit être inséré manuellement après le 10ème chiffre. ex : #destination-channel, 1231257890.006423. Voir Slack"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification."
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr "Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "Saisissez un numéro de téléphone par ligne pour indiquer où acheminer les messages SMS. Les numéros de téléphone doivent être formatés ainsi +11231231234. Pour plus d'informations, voir la documentation de Twilio"
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr "Saisissez un numéro de téléphone par ligne pour indiquer où acheminer les messages SMS. Les numéros de téléphone doivent être formatés ainsi +11231231234. Pour plus d'informations, voir la documentation de Twilio"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199."
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199."
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>plugins d’inventaire0> dans la documentation et dans le guide de configuration du plugin d’ <1>Insight1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>plugins d’inventaire0> dans la documentation et dans le guide de configuration du plugin d’ <1>Insight1>"
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>Tower1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>Tower1>"
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>aws_ec21>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>aws_ec21>"
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>azure_rm1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>azure_rm1>"
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>foreman1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>foreman1>"
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>gcp_compute1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>gcp_compute1>"
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>openstack1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>openstack1>"
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>ovirt1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin d’ <1>ovirt1>"
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>vmware_vm_inventory1>"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire0> dans la documentation et dans le guide de configuration du Plugin de <1>vmware_vm_inventory1>"
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux."
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux."
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "Erreur"
@@ -2802,90 +2865,90 @@ msgstr "Erreur"
msgid "Error fetching updated project"
msgstr "Erreur de récupération du projet mis à jour"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "Message d'erreur"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "Corps du message d'erreur"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "Erreur lors de la sauvegarde du flux de travail !"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2896,13 +2959,16 @@ msgstr "Erreur lors de la sauvegarde du flux de travail !"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "Erreur !"
@@ -2910,12 +2976,12 @@ msgstr "Erreur !"
msgid "Error:"
msgstr "Erreur :"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "Erreurs"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2933,11 +2999,11 @@ msgstr "Détail de l'événement modal"
msgid "Event summary not available"
msgstr "Récapitulatif de l’événement non disponible"
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "Événements"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "Toutes les minutes {0} fois"
@@ -2953,35 +3019,35 @@ msgstr "Correspondance exacte (recherche par défaut si non spécifiée)."
msgid "Exact search on id field."
msgstr "Recherche exacte sur le champ d'identification."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "Voici des exemples d'URL pour le contrôle des sources de GIT :"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "Voici des exemples d'URL pour Remote Archive SCM :"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "Exemples d’URL pour le SCM Subversion :"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "Voici quelques exemples :"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "Exemples :"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "Exécuter quel que soit l'état final du nœud parent."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "Exécuter lorsque le nœud parent se trouve dans un état de défaillance."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "Exécuter lorsque le nœud parent se trouve dans un état de réussite."
@@ -2992,29 +3058,29 @@ msgstr "Exécution"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "Environnement d'exécution"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "Environnement d'exécution manquant"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3022,7 +3088,7 @@ msgstr "Environnement d'exécution manquant"
msgid "Execution Environments"
msgstr "Environnements d'exécution"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "Nœud d'exécution"
@@ -3030,11 +3096,11 @@ msgstr "Nœud d'exécution"
msgid "Execution environment copied successfully"
msgstr "Environnement d'exécution copié"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "L'environnement d'exécution est absent ou supprimé."
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "Environnement d'exécution non trouvé."
@@ -3051,7 +3117,7 @@ msgstr "Sortir sans sauvegarder"
msgid "Expand"
msgstr "Développer"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "Développer toutes les lignes"
@@ -3073,15 +3139,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "On s'attendait à ce qu'au moins un des éléments suivants soit présent dans le fichier : client_email, project_id ou private_key."
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "Expire"
@@ -3093,13 +3159,12 @@ msgstr "Expire le"
msgid "Expires on UTC"
msgstr "Expire UTC"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "Arrive à expiration le {0}"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "Explication"
@@ -3107,35 +3172,39 @@ msgstr "Explication"
msgid "External Secret Management System"
msgstr "Système externe de gestion des secrets"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "Variables supplémentaires"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "TERMINÉ :"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "Stockage des facts"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "Facts"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3160,15 +3229,16 @@ msgstr "Échec des hôtes"
msgid "Failed jobs"
msgstr "Jobs ayant échoué"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "N'a pas approuvé un ou plusieurs flux de travail."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "N'a pas approuvé le flux de travail."
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "Impossible d'assigner les rôles correctement"
@@ -3178,31 +3248,36 @@ msgid "Failed to associate role"
msgstr "N'a pas réussi à associer le rôle"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "N'a pas réussi à associer."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "N'a pas réussi à annuler la synchronisation des sources d'inventaire."
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "Échec de l'annulation de Project Sync"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs"
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "Échec de l'annulation {0}"
@@ -3218,20 +3293,20 @@ msgstr "Échec de la copie de l'environnement d'exécution"
msgid "Failed to copy inventory."
msgstr "N'a pas réussi à copier l'inventaire."
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "Le projet n'a pas été copié."
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "Impossible de copier le modèle."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "N'a pas réussi à supprimer l’application"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "N'a pas réussi à supprimer l’identifiant."
@@ -3239,24 +3314,24 @@ msgstr "N'a pas réussi à supprimer l’identifiant."
msgid "Failed to delete group {0}."
msgstr "Echec de la suppression du groupe {0}."
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "N'a pas réussi à supprimer l'hôte."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "Impossible de supprimer la source d'inventaire {name}."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "N'a pas réussi à supprimer l'inventaire."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "N'a pas réussi à supprimer le modèle de Job."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "N'a pas réussi à supprimer la notification."
@@ -3268,7 +3343,7 @@ msgstr "N'a pas réussi à supprimer une ou plusieurs applications"
msgid "Failed to delete one or more credential types."
msgstr "N'a pas réussi à supprimer un ou plusieurs types d’identifiants."
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "N'a pas réussi à supprimer un ou plusieurs identifiants."
@@ -3280,8 +3355,8 @@ msgstr "Échec de la suppression d'un ou plusieurs environnements d'exécution"
msgid "Failed to delete one or more groups."
msgstr "N'a pas réussi à supprimer un ou plusieurs groupes."
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "N'a pas réussi à supprimer un ou plusieurs hôtes."
@@ -3293,15 +3368,15 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs groupes d'instances."
msgid "Failed to delete one or more inventories."
msgstr "N'a pas réussi à supprimer un ou plusieurs inventaires."
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire."
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "N'a pas réussi à supprimer un ou plusieurs modèles de Jobs."
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs."
@@ -3325,7 +3400,7 @@ msgstr "N'a pas réussi à supprimer une ou plusieurs programmations."
msgid "Failed to delete one or more teams."
msgstr "N'a pas réussi à supprimer une ou plusieurs équipes."
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "N'a pas réussi à supprimer un ou plusieurs modèles."
@@ -3333,7 +3408,7 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs modèles."
msgid "Failed to delete one or more tokens."
msgstr "N'a pas réussi à supprimer un ou plusieurs jetons."
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur."
@@ -3341,19 +3416,19 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur."
msgid "Failed to delete one or more users."
msgstr "N'a pas réussi à supprimer un ou plusieurs utilisateurs."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "N'a pas réussi à supprimer l'organisation."
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "N'a pas réussi à supprimer le projet."
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "N'a pas réussi à supprimer le rôle"
@@ -3362,11 +3437,11 @@ msgstr "N'a pas réussi à supprimer le rôle"
msgid "Failed to delete role."
msgstr "N'a pas réussi à supprimer le rôle."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "N'a pas réussi à supprimer la programmation."
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "N'a pas réussi à supprimer l'inventaire smart."
@@ -3378,11 +3453,11 @@ msgstr "N'a pas réussi à supprimer l'équipe."
msgid "Failed to delete user."
msgstr "Impossible de supprimer l'utilisateur."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "N'a pas réussi à supprimer l'approbation du flux de travail."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "N'a pas réussi à supprimer le modèle de flux de travail."
@@ -3391,11 +3466,11 @@ msgstr "N'a pas réussi à supprimer le modèle de flux de travail."
msgid "Failed to delete {name}."
msgstr "N'a pas réussi à supprimer {name}."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "N'a pas refusé d'approuver un ou plusieurs flux de travail."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "N'a pas refusé l'approbation du flux de travail."
@@ -3405,13 +3480,13 @@ msgstr "N'a pas refusé l'approbation du flux de travail."
msgid "Failed to disassociate one or more groups."
msgstr "N'a pas réussi à dissocier un ou plusieurs groupes."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "N'a pas réussi à dissocier un ou plusieurs hôtes."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "N'a pas réussi à dissocier une ou plusieurs instances."
@@ -3419,7 +3494,7 @@ msgstr "N'a pas réussi à dissocier une ou plusieurs instances."
msgid "Failed to disassociate one or more teams."
msgstr "N'a pas réussi à dissocier une ou plusieurs équipes."
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "Impossible de récupérer les paramètres de configuration de connexion personnalisés. Les paramètres par défaut du système seront affichés à la place."
@@ -3427,7 +3502,7 @@ msgstr "Impossible de récupérer les paramètres de configuration de connexion
msgid "Failed to fetch the updated project data."
msgstr "Échec de la récupération des données de projet mises à jour."
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3445,7 +3520,7 @@ msgstr "Echec de la récupération de l'objet ressource de noeud complet."
msgid "Failed to retrieve node credentials."
msgstr "Impossible de récupérer les informations d'identification des nœuds."
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "Échec de l'exécution d'un contrôle de fonctionnement sur une ou plusieurs instances."
@@ -3458,11 +3533,11 @@ msgstr "Échec de l'envoi de la notification de test."
msgid "Failed to sync inventory source."
msgstr "Impossible de synchroniser la source de l'inventaire."
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "Échec de la synchronisation du projet."
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "N'a pas réussi à synchroniser une partie ou la totalité des sources d'inventaire."
@@ -3482,9 +3557,9 @@ msgstr "N'a pas réussi à basculer la notification."
msgid "Failed to toggle schedule."
msgstr "Impossible de basculer le calendrier."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "Échec de la mise à jour de l'ajustement des capacités."
@@ -3493,7 +3568,7 @@ msgstr "Échec de la mise à jour de l'ajustement des capacités."
msgid "Failed to update survey."
msgstr "N'a pas réussi à mettre à jour l'enquête."
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "Échec du jeton d'utilisateur."
@@ -3502,17 +3577,17 @@ msgstr "Échec du jeton d'utilisateur."
msgid "Failure"
msgstr "Échec"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "Faux"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "Février"
@@ -3536,11 +3611,11 @@ msgstr "Le champ correspond à l'expression régulière donnée."
msgid "Field starts with value."
msgstr "Le champ commence par la valeur."
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "Cinquième"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "Écart entre les fichiers"
@@ -3552,28 +3627,28 @@ msgstr "Téléchargement de fichier rejeté. Veuillez sélectionner un seul fich
msgid "File, directory or script"
msgstr "Fichier, répertoire ou script"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "Filtrer par {name}"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "Heure de Fin"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "Terminé"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "Première"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3582,17 +3657,17 @@ msgstr "Première"
msgid "First Name"
msgstr "Prénom"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "Première exécution"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "Prénom"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "Tout d'abord, sélectionnez une clé"
@@ -3614,51 +3689,57 @@ msgid "Follow"
msgstr "Suivez"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes."
+#~ msgid ""
+#~ "For job templates, select run to execute\n"
+#~ "the playbook. Select check to only check playbook syntax,\n"
+#~ "test environment setup, and report problems without\n"
+#~ "executing the playbook."
+#~ msgstr "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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 "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "Pour plus d'informations, reportez-vous à"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "Forks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "Quatrième"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "Informations sur la fréquence"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "La fréquence ne correspondait pas à une valeur attendue"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "Ven."
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "Vendredi"
@@ -3670,7 +3751,7 @@ msgstr "Recherche floue sur les champs id, nom ou description."
msgid "Fuzzy search on name field."
msgstr "Recherche floue sur le champ du nom."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Informations d’identification Galaxy"
@@ -3679,7 +3760,7 @@ msgstr "Informations d’identification Galaxy"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Les identifiants Galaxy doivent appartenir à une Organisation."
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "Collecte des facts"
@@ -3694,13 +3775,14 @@ msgstr "Obtenir des abonnements"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3738,17 +3820,17 @@ msgstr "GitHub Team"
msgid "GitHub settings"
msgstr "Paramètres de GitHub"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "Disponible dans le monde entier"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "L'environnement d'exécution disponible globalement ne peut pas être réaffecté à une organisation spécifique"
@@ -3785,12 +3867,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Clé API Grafana"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "URL Grafana"
@@ -3806,7 +3888,7 @@ msgstr "Supérieur ou égal à la comparaison."
msgid "Group"
msgstr "Groupe"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "Détails du groupe"
@@ -3814,12 +3896,12 @@ msgstr "Détails du groupe"
msgid "Group type"
msgstr "Type de groupe"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3828,13 +3910,13 @@ msgstr "Type de groupe"
msgid "Groups"
msgstr "Groupes"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "En-têtes HTTP"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "Méthode HTTP"
@@ -3842,10 +3924,10 @@ msgstr "Méthode HTTP"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "Bilan de fonctionnement"
+#~ msgid "Health Check"
+#~ msgstr "Bilan de fonctionnement"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "Fonctionne correctement"
@@ -3876,23 +3958,23 @@ msgstr "Hop"
msgid "Hop node"
msgstr "Noeud Hop"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "Hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "Échec de désynchronisation des hôtes"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "Désynchronisation des hôtes OK"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "Clé de configuration de l’hôte"
@@ -3900,61 +3982,61 @@ msgstr "Clé de configuration de l’hôte"
msgid "Host Count"
msgstr "Nombre d'hôtes"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "Détails sur l'hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "Échec de l'hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "Échec de l'hôte"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "Filtre d'hôte"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "Nom d'hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "Hôte OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "Interrogation de l'hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "Nouvel essai de l'hôte"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "Hôte ignoré"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "Hôte démarré"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "Hôte inaccessible"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "Informations sur l'hôte"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "Détails sur l'hôte modal"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "Hôte non trouvé."
@@ -3964,20 +4046,20 @@ msgid "Host status information for this job is unavailable."
msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas disponibles."
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4002,7 +4084,7 @@ msgstr "Hôtes importés"
msgid "Hosts remaining"
msgstr "Hôtes restants"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "Heure"
@@ -4019,25 +4101,25 @@ msgstr "Hybride"
msgid "Hybrid node"
msgstr "Noeud hybride"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "ID du tableau de bord (facultatif)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "ID du panneau (facultatif)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "ID du tableau de bord (facultatif)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "ID du panneau (facultatif)"
@@ -4046,49 +4128,49 @@ msgstr "ID du panneau (facultatif)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC Nick"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "Adresse du serveur IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "Port du serveur IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC nick"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "Adresse du serveur IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "Mot de passe du serveur IRC"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "Port du serveur IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "Icône URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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 "Si cochées, toutes les variables des groupes et hôtes dépendants seront supprimées et remplacées par celles qui se trouvent dans la source externe."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4100,12 +4182,16 @@ msgid ""
msgstr "Si cochés, tous les hôtes et groupes qui étaient présent auparavant sur la source externe, mais qui sont maintenant supprimés, seront supprimés de l'inventaire. Les hôtes et les groupes qui n'étaient pas gérés par la source de l'inventaire seront promus au prochain groupe créé manuellement ou s'il n'y a pas de groupe créé manuellement dans lequel les promouvoir, ils devront rester dans le groupe \"all\" par défaut de cet inventaire."
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "Si activé, exécuter ce playbook en tant qu'administrateur."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr "Si activé, exécuter ce playbook en tant qu'administrateur."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4113,34 +4199,46 @@ msgid ""
msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "Si activé, afficher les changements de facts par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de tâche en simultané."
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de tâche en simultané."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de job de flux de travail en simultané."
#: screens/Template/shared/JobTemplateForm.js:611
-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 "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les facts sont persistants et injectés dans le cache des facts au moment de l'exécution."
+#~ 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 "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les facts sont persistants et injectés dans le cache des facts au moment de l'exécution."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "S'il est spécifié, ce champ sera affiché sur le nœud au lieu du nom de la ressource lors de la visualisation du flux de travail"
@@ -4158,26 +4256,26 @@ msgstr "Si vous ne disposez pas d'un abonnement, vous pouvez vous rendre sur le
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "Si vous souhaitez uniquement supprimer l'accès de cet utilisateur particulier, veuillez le supprimer de l'équipe."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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 "Si vous voulez que la source de l'inventaire soit mise à jour au lancement et à la mise à jour du projet, cliquez sur Mettre à jour au lancement, et aller à"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "Image"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "Ajout de fichier"
@@ -4196,17 +4294,17 @@ msgstr "Info"
msgid "Initiated By"
msgstr "Initié par"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "Initié par"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "Initié par (nom d'utilisateur)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "Configuration d'Injector"
@@ -4216,18 +4314,22 @@ msgstr "Configuration d'Injector"
msgid "Input configuration"
msgstr "Configuration de l'entrée"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Insights - Information d’identification"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights - Plateforme d'automatisation Ansible"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights - Plateforme d'automatisation Ansible"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Insights - Tableau de bord de la plate-forme d'automatisation Ansible"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Insights - Tableau de bord de la plate-forme d'automatisation Ansible"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4237,27 +4339,27 @@ msgstr "ID du système Insights"
msgid "Instance"
msgstr "Instance"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "Filtres de l'instance"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "Groupe d'instance"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "Groupes d'instances"
@@ -4265,7 +4367,7 @@ msgstr "Groupes d'instances"
msgid "Instance ID"
msgstr "ID d'instance"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "Détail de l'instance"
@@ -4274,7 +4376,7 @@ msgstr "Détail de l'instance"
msgid "Instance group"
msgstr "Groupe d'instance"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "Groupe d'instance non trouvé."
@@ -4283,21 +4385,21 @@ msgstr "Groupe d'instance non trouvé."
msgid "Instance group used capacity"
msgstr "La capacité utilisée par le groupe d'instances"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "Groupes d'instances"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "Instances"
@@ -4321,15 +4423,15 @@ msgstr "Cible de lien invalide. Impossible d'établir un lien avec les dépenda
msgid "Invalid time format"
msgstr "Format d'heure non valide"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4345,36 +4447,38 @@ msgstr "Les inventaires et les sources ne peuvent pas être copiés"
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "Inventaire"
@@ -4382,7 +4486,7 @@ msgstr "Inventaire"
msgid "Inventory (Name)"
msgstr "Inventaire (nom)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "Fichier d'inventaire"
@@ -4390,35 +4494,35 @@ msgstr "Fichier d'inventaire"
msgid "Inventory ID"
msgstr "ID Inventaire"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "Sources d'inventaire"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "Projet Source d’inventaire"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "Sync Source d’inventaire"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "Erreur de synchronisation de la source de l'inventaire"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "Sources d'inventaire"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "Sync Inventaires"
@@ -4434,12 +4538,12 @@ msgstr "Mise à jour de l'inventaire"
msgid "Inventory copied successfully"
msgstr "Inventaire copié"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "Fichier d'inventaire"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "Inventaire non trouvé."
@@ -4451,23 +4555,23 @@ msgstr "Synchronisation des inventaires"
msgid "Inventory sync failures"
msgstr "Erreurs de synchronisation des inventaires"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "Est élargi"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "N'est pas élargi"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "Échec de l'élément"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "Élément OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "Élément ignoré"
@@ -4481,49 +4585,50 @@ msgid "Items per page"
msgstr "Éléments par page"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "ID JOB :"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "Onglet JSON"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON :"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "Janvier"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "Job"
+#~ msgid "Job"
+#~ msgstr "Job"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "Erreur d'annulation d'un Job"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "Erreur de suppression d’un Job"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "ID Job"
@@ -4532,33 +4637,33 @@ msgid "Job Runs"
msgstr "Exécutions Job"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "Tranche de job"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "Parent de tranche de job"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "Tranche de job"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "Statut Job"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "Balises Job"
@@ -4567,9 +4672,9 @@ msgstr "Balises Job"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "Modèle de Job"
@@ -4577,13 +4682,13 @@ msgstr "Modèle de Job"
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 "Les informations d'identification par défaut du modèle de Job doivent être remplacées par une information du même type. Veuillez sélectionner un justificatif d'identité pour les types suivants afin de procéder : {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4598,15 +4703,15 @@ msgstr "Les modèles de Job dont l'inventaire ou le projet est manquant ne peuve
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "Les modèles de Job dont les informations d'identification demandent un mot de passe ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds"
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "Type de Job"
@@ -4618,35 +4723,35 @@ msgstr "Statut Job"
msgid "Job status graph tab"
msgstr "Onglet Graphique de l'état des Jobs"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "Modèles de Jobs"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "Jobs"
@@ -4654,27 +4759,27 @@ msgstr "Jobs"
msgid "Jobs settings"
msgstr "Paramètres Job"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "Juillet"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "Juin"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "Clé"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "Sélection de la clé"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "Clé Typeahead"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "Mot-clé "
@@ -4731,44 +4836,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "Libellé"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "Nom du label"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "Libellés"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "Dernier"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "Dernier bilan de fonctionnement"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "Statut du dernier Job"
@@ -4776,36 +4882,36 @@ msgstr "Statut du dernier Job"
msgid "Last Login"
msgstr "Dernière connexion"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "Dernière modification"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4814,12 +4920,12 @@ msgstr "Dernière modification"
msgid "Last Name"
msgstr "Nom"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "Dernière exécution"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "Dernière exécution"
@@ -4827,19 +4933,19 @@ msgstr "Dernière exécution"
msgid "Last job"
msgstr "Dernier Job"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "Dernière modification"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "Nom"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "Dernière utilisation"
@@ -4847,18 +4953,18 @@ msgstr "Dernière utilisation"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "Lancer"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "Lancer le job de gestion"
+#~ msgid "Launch Management Job"
+#~ msgstr "Lancer le job de gestion"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "Lacer le modèle."
@@ -4871,7 +4977,7 @@ msgstr "Lacer le modèle."
msgid "Launch management job"
msgstr "Lancer le Job de gestion"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "Lancer le modèle"
@@ -4888,15 +4994,19 @@ msgstr "Lancer | {0}"
msgid "Launched By"
msgstr "Lancé par"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "Lancé par (Nom d'utilisateur)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "En savoir plus sur Insights pour Ansible Automation Platform"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "En savoir plus sur Insights pour Ansible Automation Platform"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "Laissez ce champ vide pour rendre l'environnement d'exécution globalement disponible."
@@ -4915,19 +5025,20 @@ msgstr "Moins que la comparaison."
msgid "Less than or equal to comparison."
msgstr "Moins ou égal à la comparaison."
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "Limite"
@@ -4943,15 +5054,15 @@ msgstr "Chargement en cours..."
msgid "Local"
msgstr "Local"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "Fuseau horaire local"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "Fuseau horaire local"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "Connexion"
@@ -4970,7 +5081,7 @@ msgid "Logout"
msgstr "Déconnexion"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "Recherche modale"
@@ -4986,9 +5097,9 @@ msgstr "Type de recherche"
msgid "Lookup typeahead"
msgstr "Recherche Typeahead"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "DERNIÈRE SYNCHRONISATION"
@@ -4996,11 +5107,11 @@ msgstr "DERNIÈRE SYNCHRONISATION"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "Informations d’identification de la machine"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "Géré"
@@ -5009,13 +5120,13 @@ msgstr "Géré"
msgid "Managed nodes"
msgstr "Nœuds gérés"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "Job de gestion"
@@ -5024,7 +5135,7 @@ msgstr "Job de gestion"
msgid "Management Jobs"
msgstr "Jobs de gestion"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "Job de gestion"
@@ -5033,11 +5144,11 @@ msgstr "Job de gestion"
msgid "Management job launch error"
msgstr "Erreur de lancement d'un job de gestion"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "Job de gestion non trouvé."
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "Jobs de gestion"
@@ -5045,18 +5156,19 @@ msgstr "Jobs de gestion"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "Manuel"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "Mars"
@@ -5065,20 +5177,20 @@ msgstr "Mars"
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "Hôtes max."
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "Maximum"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "Longueur maximale"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "Mai"
@@ -5103,27 +5215,29 @@ msgstr "Métriques"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "Minimum"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "Longueur minimale"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "Nombre minimum statique d'instances qui seront automatiquement assignées à ce groupe lors de la mise en ligne de nouvelles instances."
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
msgid ""
"Minimum percentage of all instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "Le pourcentage minimum de toutes les instances qui seront automatiquement assignées à ce groupe lorsque de nouvelles instances seront mises en ligne."
-#: components/Schedule/shared/ScheduleForm.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "Minute"
@@ -5144,23 +5258,23 @@ msgid "Miscellaneous System settings"
msgstr "Réglages divers du système"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "Manquant"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "Ressource manquante"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "Modifié"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5171,7 +5285,7 @@ msgstr "Modifié"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5180,7 +5294,7 @@ msgstr "Modifié"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5208,33 +5322,33 @@ msgstr "Modifié par (nom d'utilisateur)"
msgid "Modified by (username)"
msgstr "Modifié par (nom d'utilisateur)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "Module"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "Arguments du module"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "Nom du module"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "Lun."
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "Lundi"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "Mois"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "Plus d'informations"
@@ -5242,13 +5356,13 @@ msgstr "Plus d'informations"
msgid "More information for"
msgstr "Plus d'informations pour"
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "Multi-Select"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "Options à choix multiples."
@@ -5260,7 +5374,7 @@ msgstr "Options à choix multiples (sélection multiple)"
msgid "Multiple Choice (single select)"
msgstr "Options à choix multiples (une seule sélection)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "Options à choix multiples."
@@ -5268,13 +5382,13 @@ msgstr "Options à choix multiples."
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5306,15 +5420,15 @@ msgstr "Options à choix multiples."
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5330,18 +5444,18 @@ msgstr "Options à choix multiples."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5351,14 +5465,14 @@ msgstr "Options à choix multiples."
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5373,8 +5487,8 @@ msgstr "Options à choix multiples."
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5404,15 +5518,15 @@ msgstr "Options à choix multiples."
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5435,40 +5549,40 @@ msgstr "Options à choix multiples."
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5476,10 +5590,10 @@ msgstr "Options à choix multiples."
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "Nom"
@@ -5487,9 +5601,9 @@ msgstr "Nom"
msgid "Navigation"
msgstr "Navigation"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "Jamais"
@@ -5497,22 +5611,21 @@ msgstr "Jamais"
msgid "Never Updated"
msgstr "Jamais mis à jour"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "N'expire jamais"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "Nouveau"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5521,27 +5634,27 @@ msgstr "Nouveau"
msgid "Next"
msgstr "Suivant"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "Exécution suivante"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "Non"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "Aucun hôte correspondant"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "Aucun hôte restant"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "Pas de JSON disponible"
@@ -5550,12 +5663,12 @@ msgid "No Jobs"
msgstr "Aucun Job"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "Aucune erreur standard disponible"
+#~ msgid "No Standard Error Available"
+#~ msgstr "Aucune erreur standard disponible"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "Aucune sortie standard disponible"
+#~ msgid "No Standard Out Available"
+#~ msgstr "Aucune sortie standard disponible"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5565,7 +5678,7 @@ msgstr "Aucune erreurs de synchronisation des inventaires"
msgid "No items found."
msgstr "Aucun objet trouvé."
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "Aucune donnée de tâche disponible."
@@ -5573,7 +5686,7 @@ msgstr "Aucune donnée de tâche disponible."
msgid "No output found for this job."
msgstr "Aucune sortie de données pour ce job."
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "Aucun résultat trouvé"
@@ -5582,20 +5695,20 @@ msgstr "Aucun résultat trouvé"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "Aucun résultat trouvé"
@@ -5613,22 +5726,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "Aucun(e) {pluralizedItemName} trouvé(e)"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "Alias de nœud"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "Type de nœud"
@@ -5644,11 +5757,11 @@ msgstr "Types de nœud"
msgid "None"
msgstr "Aucun"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "Aucun (exécution unique)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "Aucune (exécution unique)"
@@ -5671,7 +5784,7 @@ msgstr "Non configuré"
msgid "Not configured for inventory sync."
msgstr "Non configuré pour la synchronisation de l'inventaire."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5695,11 +5808,11 @@ msgstr "Remarque : L'ordre dans lequel ces éléments sont sélectionnés défin
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "Remarque : L'ordre de ces informations d'identification détermine la priorité pour la synchronisation et la consultation du contenu. Sélectionner plus d’une option pour permettre le déplacement."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "Remarque : ce champ suppose que le nom distant est \"origin\"."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5709,7 +5822,7 @@ msgid ""
"password information."
msgstr "Remarque : si vous utilisez le protocole SSH pour GitHub ou Bitbucket, entrez uniquement une clé SSH sans nom d’utilisateur (autre que git). De plus, GitHub et Bitbucket ne prennent pas en charge l’authentification par mot de passe lorsque SSH est utilisé. Le protocole GIT en lecture seule (git://) n’utilise pas les informations de nom d’utilisateur ou de mot de passe."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "Couleur des notifications"
@@ -5718,11 +5831,11 @@ msgstr "Couleur des notifications"
msgid "Notification Template not found."
msgstr "Modèle de notification introuvable."
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "Modèles de notification"
@@ -5731,7 +5844,7 @@ msgstr "Modèles de notification"
msgid "Notification Type"
msgstr "Type de notification"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "Couleur de la notification"
@@ -5739,7 +5852,7 @@ msgstr "Couleur de la notification"
msgid "Notification sent successfully"
msgstr "Notification envoyée avec succès"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "Le test de notification a échoué."
@@ -5754,25 +5867,25 @@ msgstr "Type de notification"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "Notifications"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "Novembre"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5780,69 +5893,75 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "Occurrences"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "Octobre"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "Désactivé"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "Le"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "En cas d'échec"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "En cas de succès"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "À la date du"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "Tels jours"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "Grouper seulement par"
@@ -5850,26 +5969,31 @@ msgstr "Grouper seulement par"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "Détails de l'option"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
msgstr "Libellés facultatifs décrivant cet inventaire, par exemple 'dev' ou 'test'. Les libellés peuvent être utilisés pour regrouper et filtrer les inventaires et les jobs terminés."
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "Libellés facultatifs décrivant ce modèle de job, par exemple 'dev' ou 'test'. Les libellés peuvent être utilisés pour regrouper et filtrer les modèles de job et les jobs terminés."
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "En option, sélectionnez les informations d'identification à utiliser pour renvoyer les mises à jour de statut au service webhook."
@@ -5877,15 +6001,15 @@ msgstr "En option, sélectionnez les informations d'identification à utiliser p
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "Options"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "Commande"
@@ -5893,19 +6017,20 @@ msgstr "Commande"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5913,19 +6038,19 @@ msgstr "Commande"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5940,19 +6065,19 @@ msgstr "Organisation (Nom)"
msgid "Organization Name"
msgstr "Nom de l'organisation"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "Organisation non trouvée."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5967,34 +6092,39 @@ msgstr "Autres invites"
msgid "Out of compliance"
msgstr "Non-conformité"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "Sortie"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "Remplacer"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "Remplacer les groupes locaux et les hôtes de la source d'inventaire distante."
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "Remplacer les variables locales de la source d'inventaire distante."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "Remplacer les variables"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "PUBLICATION"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PLACER"
@@ -6003,11 +6133,11 @@ msgstr "PLACER"
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Sous-domaine Pagerduty"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Sous-domaine Pagerduty"
@@ -6031,23 +6161,28 @@ msgstr "Pan droite"
msgid "Pan Up"
msgstr "Pan En haut"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Passez des changements supplémentaires en ligne de commande. Il y a deux paramètres de ligne de commande possibles :"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation pour obtenir des exemples de syntaxe."
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation pour obtenir des exemples de syntaxe."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax."
msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation Ansible Tower pour obtenir des exemples de syntaxe."
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6072,8 +6207,8 @@ msgstr "Les deux dernières semaines"
msgid "Past week"
msgstr "La semaine dernière"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "En attente"
@@ -6090,7 +6225,7 @@ msgstr "En attente de suppression"
msgid "Perform a search to define a host filter"
msgstr "Effectuez une recherche ci-dessus pour définir un filtre d'hôte"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "Jeton d'accès personnel"
@@ -6099,7 +6234,7 @@ msgstr "Jeton d'accès personnel"
msgid "Personal access token"
msgstr "Jeton d'accès personnel"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "Play"
@@ -6107,45 +6242,45 @@ msgstr "Play"
msgid "Play Count"
msgstr "Play - Nombre"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "Play - Démarrage"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Vérification du Playbook"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Playbook terminé"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Répertoire Playbook"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Exécution Playbook"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Playbook démarré"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6185,27 +6320,27 @@ msgstr "Veuillez cliquer sur le bouton de démarrage pour commencer."
msgid "Please enter a valid URL"
msgstr "Veuillez entrer une URL valide"
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "Entrez une valeur."
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "Veuillez vous connecter"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "Veuillez ajouter un job pour remplir cette liste"
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "Veuillez choisir un numéro de jour entre 1 et 31."
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "Sélectionnez un inventaire ou cochez l’option Me le demander au lancement."
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "Veuillez choisir une date/heure de fin qui vient après la date/heure de début."
@@ -6221,13 +6356,13 @@ msgstr "Veuillez sélectionner une autre recherche par le filtre ci-dessus"
msgid "Please wait until the topology view is populated..."
msgstr "Veuillez patienter jusqu’à ce que la topologie soit remplie..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Remplacement des spécifications du pod"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "Type de politique"
@@ -6237,7 +6372,7 @@ msgstr "Type de politique"
msgid "Policy instance minimum"
msgstr "Instances de stratégies minimum"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "Pourcentage d'instances de stratégie"
@@ -6256,12 +6391,12 @@ msgid ""
"examples."
msgstr "Remplissez les hôtes pour cet inventaire en utilisant un filtre de recherche. Exemple : ansible_facts.ansible_distribution : \"RedHat\". Reportez-vous à la documentation pour plus de syntaxe et d'exemples. Voir la documentation Ansible Tower pour des exemples de syntaxe."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "Port"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "Conditions préalables à l'exécution de ce nœud lorsqu'il y a plusieurs parents. Reportez-vous à "
@@ -6271,10 +6406,18 @@ msgid ""
"choice per line."
msgstr "Appuyez sur \"Entrée\" pour ajouter d'autres choix de réponses. Un choix de réponse par ligne."
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Appuyez sur Entrée pour modifier. Appuyez sur ESC pour arrêter la modification."
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6284,9 +6427,9 @@ msgstr "Prévisualisation"
msgid "Private key passphrase"
msgstr "Phrase de passe pour la clé privée"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "Élévation des privilèges"
@@ -6294,40 +6437,44 @@ msgstr "Élévation des privilèges"
msgid "Privilege escalation password"
msgstr "Mot de passe pour l’élévation des privilèges"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "Projet"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "Chemin de base du projet"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "Statut du projet"
+#~ msgid "Project Status"
+#~ msgstr "Statut du projet"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "Sync Projet"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "Erreur de synchronisation du projet"
@@ -6335,11 +6482,19 @@ msgstr "Erreur de synchronisation du projet"
msgid "Project Update"
msgstr "Mise à jour du projet"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "Projet copié"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "Projet non trouvé."
@@ -6349,12 +6504,12 @@ msgstr "Erreurs de synchronisation du projet"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6365,18 +6520,18 @@ msgstr "Projets"
msgid "Promote Child Groups and Hosts"
msgstr "Promouvoir les groupes de dépendants et les hôtes"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "Invite"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "Invite Remplacements"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "Me le demander au lancement"
@@ -6384,13 +6539,12 @@ msgstr "Me le demander au lancement"
msgid "Prompt | {0}"
msgstr "Invite | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "Valeurs incitatrices"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6398,7 +6552,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6406,11 +6560,16 @@ msgid ""
"information and examples on patterns."
msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "Indiquez une valeur pour ce champ ou sélectionnez l'option Me le demander au lancement."
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6425,32 +6584,40 @@ msgid ""
msgstr "Fournissez vos informations d’identification client Red Hat ou Red Hat Satellite et choisissez parmi une liste d’abonnements disponibles. Les informations d'identification que vous utilisez seront stockées pour une utilisation ultérieure lors de la récupération des abonnements renouvelés ou étendus."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Fournissez vos informations d'identification Red Hat ou Red Hat Satellite pour activer Insights pour Ansible Automation Platform."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Fournissez vos informations d'identification Red Hat ou Red Hat Satellite pour activer Insights pour Ansible Automation Platform."
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "URL de rappel d’exécution "
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "Détails de rappel d’exécution"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "Rappels d’exécution "
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Extraire"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "Question"
@@ -6462,14 +6629,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "Paramètres RADIUS"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "Lecture"
@@ -6489,9 +6656,9 @@ msgstr "Modèles récents"
msgid "Recent Templates list tab"
msgstr "Onglet Liste des modèles récents"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "Jobs récents"
@@ -6510,6 +6677,7 @@ msgstr "Red Hat Ansible Automation Platform"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6531,13 +6699,14 @@ msgstr "Manifeste de souscription à Red Hat"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "Redirection d'URIs."
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "Redirection d'uris."
+#~ msgid "Redirect uris"
+#~ msgstr "Redirection d'uris."
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6547,15 +6716,20 @@ msgstr "Redirection vers le tableau de bord"
msgid "Redirecting to subscription detail"
msgstr "Redirection vers le détail de l'abonnement"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "Reportez-vous à "
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "Reportez-vous à la documentation Ansible pour plus de détails sur le fichier de configuration."
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr "Reportez-vous à la documentation Ansible pour plus de détails sur le fichier de configuration."
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6573,25 +6747,26 @@ msgstr "Actualiser pour réviser"
msgid "Refresh project revision"
msgstr "Actualiser la révision du projet"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "Régions"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "Information d’identification au registre"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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 "Expression régulière où seuls les noms d'hôtes correspondants seront importés. Le filtre est appliqué comme une étape de post-traitement après l'application de tout filtre de plugin d'inventaire."
-#: screens/Inventory/Inventories.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "Groupes liés"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "Clés associées"
@@ -6606,8 +6781,8 @@ msgstr "Recherche connexe : type typeahead"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "Relancer"
@@ -6638,12 +6813,13 @@ msgstr "Relancer en utilisant les paramètres de l'hôte"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "Archive à distance"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6662,11 +6838,11 @@ msgstr "Supprimer le lien"
msgid "Remove Node {nodeName}"
msgstr "Supprimer le nœud {nodeName}"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "Supprimez toutes les modifications locales avant d’effectuer une mise à jour."
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "Supprimer la recherche en cours liée aux facts ansible pour activer une autre recherche par cette clé."
@@ -6682,15 +6858,19 @@ msgstr "Supprimer {0} chip"
msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch."
msgstr "La suppression de ce lien rendra le reste de la branche orphelin et entraînera son exécution dès le lancement."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "Fréquence de répétition"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "Remplacer"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "Remplacer le champ par la nouvelle valeur"
@@ -6700,7 +6880,7 @@ msgid "Request subscription"
msgstr "Demande d’abonnement"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "Obligatoire"
@@ -6710,7 +6890,7 @@ msgid "Reset zoom"
msgstr "Réinitialiser zoom"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6721,7 +6901,7 @@ msgid "Resource deleted"
msgstr "Ressource supprimée"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "Ressources"
@@ -6733,18 +6913,18 @@ msgstr "Ressources manquantes dans ce modèle."
msgid "Restore initial value."
msgstr "Rétablir la valeur initiale."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "Récupérez l'état activé à partir des variables dict donnée de l'hôte. La variable activée peut être spécifiée en utilisant la notation par points, par exemple : \"foo.bar\""
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "Renvoi"
@@ -6764,7 +6944,7 @@ msgstr "Retourne des résultats qui satisfont à ce filtre ainsi qu'à d'autres
msgid "Returns results that satisfy this one or any other filters."
msgstr "Retourne les résultats qui satisfont à ce filtre ou à tout autre filtre."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6779,7 +6959,7 @@ msgstr "Tout rétablir"
msgid "Revert all to default"
msgstr "Revenir aux valeurs par défaut"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "Retourner le champ à la valeur précédemment enregistrée"
@@ -6791,13 +6971,13 @@ msgstr "Inverser les paramètres"
msgid "Revert to factory default."
msgstr "Revenir à la valeur usine par défaut."
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "Révision"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "Révision n°"
@@ -6817,56 +6997,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "Rôle"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "Rôles"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "Exécuter"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "Exécuter Commande"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "Exécuter un contrôle de vérification de fonctionnement sur l'instance"
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "Exécuter une commande ad hoc"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "Exécuter Commande"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "Exécutez tous les"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "Fréquence d'exécution"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "Continuer"
@@ -6874,25 +7061,30 @@ msgstr "Continuer"
msgid "Run type"
msgstr "Type d’exécution"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "En cours d'exécution"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "Descripteurs d'exécution"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "Jobs en cours d'exécution"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "Jobs en cours d'exécution"
@@ -6918,7 +7110,7 @@ msgstr "SOCIAL"
msgid "SSH password"
msgstr "Mot de passe SSH"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "Connexion SSL"
@@ -6928,36 +7120,36 @@ msgid "START"
msgstr "DÉMARRER"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "ÉTAT :"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "Sam."
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "Samedi"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6983,12 +7175,16 @@ msgstr "Enregistrement réussi"
msgid "Schedule"
msgstr "Planifier"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "Détails de programmation"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "Détails de programmation"
@@ -7000,7 +7196,7 @@ msgstr "Le planning est actif."
msgid "Schedule is inactive"
msgstr "Le planning est inactif."
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "La programmation manque de règles"
@@ -7011,30 +7207,34 @@ msgstr "Programme non trouvé."
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "Programmations"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "Champ d'application"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "Faites défiler d'abord"
@@ -7052,7 +7252,7 @@ msgid "Scroll previous"
msgstr "Faire défiler la page précédente"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "Rechercher"
@@ -7060,12 +7260,12 @@ msgstr "Rechercher"
msgid "Search is disabled while the job is running"
msgstr "La recherche est désactivée pendant que le job est en cours"
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "Bouton de soumission de recherche"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "Saisie de texte de recherche"
@@ -7073,24 +7273,24 @@ msgstr "Saisie de texte de recherche"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "Une recherche par ansible_facts requiert une syntaxe particulière. Voir"
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "Deuxième"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "Secondes"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "Voir les erreurs sur la gauche"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7106,7 +7306,7 @@ msgstr "Modifier le type d’identification"
msgid "Select Groups"
msgstr "Sélectionner les groupes"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "Sélectionner les hôtes"
@@ -7114,7 +7314,7 @@ msgstr "Sélectionner les hôtes"
msgid "Select Input"
msgstr "Sélectionnez une entrée"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "Sélectionner les instances"
@@ -7122,7 +7322,7 @@ msgstr "Sélectionner les instances"
msgid "Select Items"
msgstr "Sélectionnez les éléments"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "Sélectionnez les éléments de la liste"
@@ -7130,7 +7330,7 @@ msgstr "Sélectionnez les éléments de la liste"
msgid "Select Labels"
msgstr "Sélectionner les libellés"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "Sélectionnez les rôles à appliquer"
@@ -7142,25 +7342,27 @@ msgstr "Sélectionner des équipes"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "Sélectionnez une clé de compte de service formatée en JSON pour remplir automatiquement les champs suivants."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "Sélectionnez un type de nœud"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "Sélectionnez un type de ressource"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "Sélectionnez une branche pour le flux de travail du job. Cette branche est appliquée à tous les nœuds de modèle de tâche qui exigent une branche."
+#~ msgid ""
+#~ "Select a branch for the job template. This branch is applied to\n"
+#~ "all job template nodes that prompt for a branch."
+#~ msgstr "Sélectionnez une branche pour le flux de travail du job. Cette branche est appliquée à tous les nœuds de modèle de tâche qui exigent une branche."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:48
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch"
msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche."
@@ -7176,16 +7378,16 @@ msgstr "Sélectionnez un Job à annuler"
msgid "Select a metric"
msgstr "Sélectionnez une métrique"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "Sélectionnez un module"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Choisir un playbook"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "Sélectionnez un projet avant de modifier l'environnement d'exécution."
@@ -7194,8 +7396,8 @@ msgid "Select a question to delete"
msgstr "Sélectionnez une question à supprimer"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "Sélectionnez une ligne à approuver"
+#~ msgid "Select a row to approve"
+#~ msgstr "Sélectionnez une ligne à approuver"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7203,10 +7405,10 @@ msgid "Select a row to delete"
msgstr "Sélectionnez une ligne à supprimer"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "Sélectionnez une ligne pour refuser"
+#~ msgid "Select a row to deny"
+#~ msgstr "Sélectionnez une ligne pour refuser"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "Sélectionnez une ligne à dissocier"
@@ -7215,49 +7417,51 @@ msgid "Select a subscription"
msgstr "Sélectionnez un abonnement"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "Sélectionnez une valeur pour ce champ"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Sélectionnez un service webhook."
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "Tout sélectionner"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "Sélectionnez un type d'activité"
@@ -7273,7 +7477,7 @@ msgstr "Sélectionnez une instance et une métrique pour afficher le graphique"
msgid "Select an instance to run a health check."
msgstr "Sélectionnez une instance pour effectuer un bilan de fonctionnement."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "Sélectionnez un inventaire pour le flux de travail. Cet inventaire est appliqué à tous les nœuds de modèle de tâche qui demandent un inventaire."
@@ -7281,30 +7485,39 @@ msgstr "Sélectionnez un inventaire pour le flux de travail. Cet inventaire est
msgid "Select an option"
msgstr "Sélectionnez une option"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "Sélectionnez une organisation avant de modifier l'environnement d'exécution par défaut."
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "Sélectionnez les informations d'identification pour que le Job puisse accéder aux nœuds selon qui déterminent l'exécution de cette tâche. Vous pouvez uniquement sélectionner une information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher la case \"Me demander au lancement\" sans la sélection des informations d'identification vous obligera à sélectionner des informations d'identification au moment de l’exécution. Si vous sélectionnez \"Me demander au lancement\", les informations d'identification sélectionnées deviennent les informations d'identification par défaut qui peuvent être mises à jour au moment de l'exécution."
+#~ msgid ""
+#~ "Select credentials for accessing 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 "Sélectionnez les informations d'identification pour que le Job puisse accéder aux nœuds selon qui déterminent l'exécution de cette tâche. Vous pouvez uniquement sélectionner une information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher la case \"Me demander au lancement\" sans la sélection des informations d'identification vous obligera à sélectionner des informations d'identification au moment de l’exécution. Si vous sélectionnez \"Me demander au lancement\", les informations d'identification sélectionnées deviennent les informations d'identification par défaut qui peuvent être mises à jour au moment de l'exécution."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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 "Faites une sélection à partir de la liste des répertoires trouvés dans le chemin de base du projet. Le chemin de base et le répertoire de playbook fournissent ensemble le chemin complet servant à localiser les playbooks."
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "Sélectionnez les éléments de la liste"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7320,13 +7533,13 @@ msgstr "Sélectionnez une ou plusieurs options"
msgid "Select period"
msgstr "Sélectionnez une période"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "Sélectionner les rôles à pourvoir"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "Sélectionner le chemin d'accès de la source"
@@ -7348,76 +7561,92 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cet inventaire."
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter ce modèle de job."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter ce modèle de job."
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation."
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "Sélectionnez l'application à laquelle ce jeton appartiendra, ou laissez ce champ vide pour créer un jeton d'accès personnel."
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "Sélectionnez l'application à laquelle ce jeton appartiendra, ou laissez ce champ vide pour créer un jeton d'accès personnel."
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "Sélectionnez les informations d’identification qu’il vous faut utiliser lors de l’accès à des hôtes distants pour exécuter la commande. Choisissez les informations d’identification contenant le nom d’utilisateur et la clé SSH ou le mot de passe dont Ansible aura besoin pour se connecter aux hôtes distants."
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "Sélectionnez l'environnement d'exécution pour ce modèle de Job."
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
-msgstr "Sélectionnez l'inventaire contenant les hôtes\n"
+msgstr ""
+"Sélectionnez l'inventaire contenant les hôtes\n"
"que vous voulez que ce Job gère."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "Sélectionnez le fichier d'inventaire à synchroniser par cette source. Vous pouvez le choisir dans le menu déroulant ou saisir un fichier dans l'entrée."
+#~ msgid ""
+#~ "Select the inventory file\n"
+#~ "to be synced by this source. You can select from\n"
+#~ "the dropdown or enter a file within the input."
+#~ msgstr "Sélectionnez le fichier d'inventaire à synchroniser par cette source. Vous pouvez le choisir dans le menu déroulant ou saisir un fichier dans l'entrée."
#: components/HostForm/HostForm.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "Sélectionnez l'inventaire auquel cet hôte appartiendra."
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "Sélectionnez le playbook qui devra être exécuté par cette tâche."
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter."
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter."
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "Sélectionnez votre abonnement à la Plateforme d'Automatisation Ansible à utiliser."
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "Sélectionnez {0}"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7439,7 +7668,7 @@ msgstr "Sélectionnez {0}"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "Sélectionné"
@@ -7450,20 +7679,20 @@ msgstr "Sélectionné"
msgid "Selected Category"
msgstr "Catégorie sélectionnée"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "La plage de dates sélectionnée doit avoir au moins une occurrence de calendrier."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "E-mail de l’expéditeur"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "E-mail de l'expéditeur"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "Septembre"
@@ -7472,7 +7701,7 @@ msgid "Service account JSON file"
msgstr "Fichier JSON Compte de service"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "Définir une valeur pour ce champ"
@@ -7484,7 +7713,7 @@ msgstr "Définissez le nombre de jours pendant lesquels les données doivent êt
msgid "Set preferences for data collection, logos, and logins"
msgstr "Définissez des préférences pour la collection des données, les logos et logins."
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "Définir le chemin source à"
@@ -7492,7 +7721,7 @@ msgstr "Définir le chemin source à"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jobs ne seront pas attribués à cette instance."
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "Définir sur sur Public ou Confidentiel selon le degré de sécurité du périphérique client."
@@ -7500,7 +7729,7 @@ msgstr "Définir sur sur Public ou Confidentiel selon le degré de sécurité du
msgid "Set type"
msgstr "Type d'ensemble"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "Désactiver le type pour les recherches floues dans les champs de recherche associés"
@@ -7530,8 +7759,8 @@ msgstr "Nom du paramètre"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "Paramètres"
@@ -7540,17 +7769,17 @@ msgstr "Paramètres"
msgid "Show"
msgstr "Afficher"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "Afficher Modifications"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "Afficher les modifications"
@@ -7567,72 +7796,72 @@ msgstr "Afficher moins de détails"
msgid "Show only root groups"
msgstr "Afficher uniquement les groupes racines"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Connectez-vous avec Azure AD"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "Connectez-vous à GitHub"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "Connectez-vous à GitHub Enterprise"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "Connectez-vous avec GitHub Enterprise Organizations"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "Connectez-vous avec GitHub Enterprise Teams"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "Connectez-vous avec GitHub Organizations"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "Connectez-vous avec GitHub Teams"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Connectez-vous avec Google"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "Connectez-vous avec SAML"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "Connectez-vous avec SAML {samlIDP}"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "Sélection par simple pression d'une touche"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "Balises de saut"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’un Job ou d’une Lecture. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
+#~ msgid ""
+#~ "Skip tags are useful when you have a\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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’un Job ou d’une Lecture. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7640,11 +7869,16 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’un Job ou d’une Lecture. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "Ignoré"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "Ignoré"
@@ -7666,15 +7900,15 @@ msgid "Smart Inventory not found."
msgstr "Inventaire smart non trouvé."
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "Filtre d'hôte smart"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "Inventaire smart"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "Certaines des étapes précédentes comportent des erreurs"
@@ -7696,51 +7930,53 @@ msgid "Sort"
msgstr "Trier"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "Source"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "Branche Contrôle de la source"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "Branche/ Balise / Commit du Contrôle de la source"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "Identifiant Contrôle de la source"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "Refspec Contrôle de la source"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "Révision Contrôle de la source"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "Type de Contrôle de la source"
@@ -7748,34 +7984,34 @@ msgstr "Type de Contrôle de la source"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "URL Contrôle de la source"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "Mise à jour du Contrôle de la source"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "Numéro de téléphone de la source"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "Variables Source"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "Flux de travail Source"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "Branche Contrôle de la source"
@@ -7783,12 +8019,12 @@ msgstr "Branche Contrôle de la source"
msgid "Source details"
msgstr "Détails de la source"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "Numéro de téléphone de la source"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "Variables sources"
@@ -7796,46 +8032,46 @@ msgstr "Variables sources"
msgid "Sourced from a project"
msgstr "Provenance d'un projet"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "Sources"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr "Spécifier les En-têtes HTTP en format JSON. Voir la documentation Ansible Tower pour obtenir des exemples de syntaxe."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr "Spécifier une couleur de notification. Les couleurs acceptées sont d'un code de couleur hex (exemple : #3af or #789abc) ."
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "Spécifier le champ d'application du jeton"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "Spécifier le champ d'application du jeton"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "Préciser les conditions dans lesquelles ce nœud doit être exécuté"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "Erreur standard"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "Standard Out"
+#~ msgid "Standard Out"
+#~ msgstr "Standard Out"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "Onglet Erreur standard"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "Onglet Standard Out"
+#~ msgid "Standard out tab"
+#~ msgstr "Onglet Standard Out"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7844,7 +8080,7 @@ msgstr "Onglet Standard Out"
msgid "Start"
msgstr "Démarrer"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "Heure de début"
@@ -7853,16 +8089,16 @@ msgstr "Heure de début"
msgid "Start date"
msgstr "Date de début"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "Date/Heure de début"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "Message de départ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "Démarrer le corps du message"
@@ -7879,27 +8115,27 @@ msgstr "Démarrer la source de synchronisation"
msgid "Start time"
msgstr "Heure de début"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "Démarré"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -7907,9 +8143,9 @@ msgstr "Démarré"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "Statut"
@@ -7927,7 +8163,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "Valider"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7935,7 +8171,8 @@ msgid ""
"the revision specified by the main project.\n"
"This is equivalent to specifying the --remote\n"
"flag to git submodule update."
-msgstr "Les sous-modules suivront le dernier commit sur\n"
+msgstr ""
+"Les sous-modules suivront le dernier commit sur\n"
"leur branche principale (ou toute autre branche spécifiée dans\n"
".gitmodules). Si non, les sous-modules seront maintenus à\n"
"la révision spécifiée par le projet principal.\n"
@@ -7980,6 +8217,7 @@ msgstr "Table des abonnements"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -7987,22 +8225,22 @@ msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "Réussite"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "Message de réussite"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "Corps du message de réussite"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8012,24 +8250,24 @@ msgstr "Réussi"
msgid "Successful jobs"
msgstr "Tâches ayant réussi"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "Copie réussie dans le presse-papiers !"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "Dim."
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "Dimanche"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "Questionnaire"
@@ -8041,7 +8279,7 @@ msgstr "Questionnaire désactivé"
msgid "Survey Enabled"
msgstr "Questionnaire activé"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "Ordre des questions de l’enquête"
@@ -8049,20 +8287,20 @@ msgstr "Ordre des questions de l’enquête"
msgid "Survey Toggle"
msgstr "Basculement Questionnaire"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "Modalité d'aperçu de l'enquête"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "Sync"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "Projet Sync"
@@ -8076,11 +8314,11 @@ msgstr "Tout sync"
msgid "Sync all sources"
msgstr "Synchroniser toutes les sources"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "Erreur de synchronisation"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "Synchronisation pour la révision"
@@ -8108,7 +8346,7 @@ msgstr "Administrateur du système"
msgid "System Auditor"
msgstr "Auditeur système"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "Avertissement système"
@@ -8126,20 +8364,20 @@ msgid "TACACS+ settings"
msgstr "Paramètres de la TACACS"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "Onglets"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez la lecture de certaines parties ou exécuter une tâche pariculière. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation pour obtenir des détails sur l'utilisation des balises."
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez la lecture de certaines parties ou exécuter une tâche pariculière. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation pour obtenir des détails sur l'utilisation des balises."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8147,24 +8385,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez faire une lecture particulière ou exécuter une tâche spécifique. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "Balises pour l'annotation"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "Balises pour l'annotation (facultatif)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "URL cible"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "Tâche"
@@ -8172,7 +8415,7 @@ msgstr "Tâche"
msgid "Task Count"
msgstr "Nombre de tâches"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "Tâche démarrée"
@@ -8189,24 +8432,24 @@ msgstr "Équipe"
msgid "Team Roles"
msgstr "Rôles d’équipe"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "Équipe non trouvée."
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8214,27 +8457,27 @@ msgstr "Équipe non trouvée."
msgid "Teams"
msgstr "Équipes"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "Modèle"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "Modèle copié"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "Mise à jour introuvable"
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8243,7 +8486,7 @@ msgstr "Modèles"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "Test"
@@ -8264,11 +8507,11 @@ msgid "Test passed"
msgstr "Test réussi."
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "Texte"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "Zone de texte"
@@ -8276,19 +8519,23 @@ msgstr "Zone de texte"
msgid "Textarea"
msgstr "Zone de texte"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "Cette valeur n’a pas été trouvée. Veuillez entrer ou sélectionner une valeur valide."
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "Le"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "Le type d’autorisation que l'utilisateur doit utiliser pour acquérir des jetons pour cette application"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8296,47 +8543,92 @@ msgid ""
msgstr "Délai (en secondes) avant que la notification par e-mail cesse d'essayer de joindre l'hôte et expire. Compris entre 1 et 120 secondes."
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "Délai (en secondes) avant l'annulation de la tâche. La valeur par défaut est 0 pour aucun délai d'expiration du job."
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr "Délai (en secondes) avant l'annulation de la tâche. La valeur par défaut est 0 pour aucun délai d'expiration du job."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base."
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du projet, du modèle de job ou du flux de travail."
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "L'environnement d'exécution qui sera utilisé pour les jobs qui utilisent ce projet. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du modèle de job ou du flux de travail."
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "L'environnement d'exécution qui sera utilisé lors du lancement\n"
-"ce modèle de tâche. L'environnement d'exécution résolu peut être remplacé en\n"
-"en affectant explicitement un environnement différent à ce modèle de tâche."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+#~ "L'environnement d'exécution qui sera utilisé lors du lancement\n"
+#~ "ce modèle de tâche. L'environnement d'exécution résolu peut être remplacé en\n"
+#~ "en affectant explicitement un environnement différent à ce modèle de tâche."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "Le premier extrait toutes les références. Le second extrait la requête Github pull numéro 62, dans cet exemple la branche doit être `pull/62/head`."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "L'emplacement complet de l'image, y compris le registre du conteneur, le nom de l'image et la balise de version."
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8344,25 +8636,36 @@ msgid ""
"documentation for more details."
msgstr "Nombre maximal d'hôtes pouvant être gérés par cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation Ansible pour plus de détails."
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1 utilisera la valeur par défaut Ansible qui est généralement 5. Le nombre de fourches par défaut peut être remplacé par un changement vers"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 "Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1 utilisera la valeur par défaut Ansible qui est généralement 5. Le nombre de fourches par défaut peut être remplacé par un changement vers"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "Nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. La saisie d'aucune valeur entraînera l'utilisation de la valeur par défaut du fichier de configuration ansible. Vous pourrez trouver plus d’informations."
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "La page que vous avez demandée n'a pas été trouvée."
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "Le modèle utilisé pour cibler les hôtes dans l'inventaire. En laissant le champ vide, tous et * cibleront tous les hôtes de l'inventaire. Vous pouvez trouver plus d'informations sur les modèles d'hôtes d'Ansible"
@@ -8370,7 +8673,7 @@ msgstr "Le modèle utilisé pour cibler les hôtes dans l'inventaire. En laissan
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "Le projet est en cours de synchronisation et la révision sera disponible une fois la synchronisation terminée."
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "Le projet doit être synchronisé avant qu'une révision soit disponible."
@@ -8388,7 +8691,7 @@ msgstr "La ressource associée à ce nœud a été supprimée."
msgid "The search filter did not produce any results…"
msgstr "Le résultat de la recherche n’a produit aucun résultat…"
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8409,7 +8712,7 @@ msgstr "Il n'y a pas d'annuaires de playbooks disponibles dans {project_base_dir
msgid "There must be a value in at least one input"
msgstr "Il doit y avoir une valeur dans une entrée au moins"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "Il y a eu un problème de connexion. Veuillez réessayer."
@@ -8421,31 +8724,36 @@ msgstr "Il y a eu une erreur lors du chargement de ce contenu. Veuillez recharge
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "Il y a eu une erreur dans l'analyse du fichier. Veuillez vérifier le formatage du fichier et réessayer."
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "Une erreur s'est produite lors de la sauvegarde du flux de travail."
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "Il s'agit des modules pris en charge par {brandName} pour l'exécution de commandes."
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "Il s'agit des niveaux de verbosité pour les standards hors du cycle de commande qui sont pris en charge."
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "Ces arguments sont utilisés avec le module spécifié."
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur {0} en cliquant sur"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "Troisième"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "Ce projet doit être mis à jour"
@@ -8467,15 +8775,15 @@ msgstr "Cette action permettra de dissocier le rôle suivant de {0} :"
msgid "This action will disassociate the following:"
msgstr "Cette action dissociera les éléments suivants :"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Ce groupe de conteneurs est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Cette accréditation est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "Ce type d’accréditation est actuellement utilisé par certaines informations d’accréditation et ne peut être supprimé"
@@ -8483,21 +8791,30 @@ msgstr "Ce type d’accréditation est actuellement utilisé par certaines infor
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "Ces données sont utilisées pour améliorer\n"
-"les futures versions du logiciel et pour fournir\n"
-"des informations sur la plate-forme d'automatisation Ansible."
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr ""
+#~ "Ces données sont utilisées pour améliorer\n"
+#~ "les futures versions du logiciel et pour fournir\n"
+#~ "des informations sur la plate-forme d'automatisation Ansible."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
"This data is used to enhance\n"
"future releases of the Tower Software and help\n"
"streamline customer experience and success."
-msgstr "Ces données sont utilisées pour améliorer\n"
+msgstr ""
+"Ces données sont utilisées pour améliorer\n"
"les futures versions du logiciel Tower et contribuer à\n"
"à rationaliser l'expérience des clients."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
@@ -8506,17 +8823,17 @@ msgstr "Cet environnement d'exécution est actuellement utilisé par d'autres re
msgid "This feature is deprecated and will be removed in a future release."
msgstr "Cette fonctionnalité est obsolète et sera supprimée dans une prochaine version."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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 "Ce champ est ignoré à moins qu'une variable activée ne soit définie. Si la variable activée correspond à cette valeur, l'hôte sera activé lors de l'importation."
#: components/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "Ce champ ne doit pas être vide"
+#~ msgid "This field is must not be blank"
+#~ msgstr "Ce champ ne doit pas être vide"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "Ce champ ne doit pas être vide"
+#~ msgid "This field is must not be blank."
+#~ msgstr "Ce champ ne doit pas être vide"
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8547,7 +8864,7 @@ msgstr "Ce champ doit être un nombre et avoir une valeur inférieure à {max}"
msgid "This field must be a regular expression"
msgstr "Ce champ doit être une expression régulière"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "Ce champ doit être un nombre entier"
@@ -8560,12 +8877,13 @@ msgstr "Ce champ doit comporter au moins {0} caractères"
msgid "This field must be at least {min} characters"
msgstr "Ce champ doit comporter au moins {min} caractères"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "Ce champ doit être supérieur à 0"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8573,6 +8891,10 @@ msgstr "Ce champ doit être supérieur à 0"
msgid "This field must not be blank"
msgstr "Ce champ ne doit pas être vide"
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "Ce champ ne doit pas contenir d'espaces"
@@ -8589,7 +8911,7 @@ msgstr "Ce champ ne doit pas dépasser {max} caractères"
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant l’identifiant spécifié."
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Ce groupe d'instance est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
@@ -8597,15 +8919,15 @@ msgstr "Ce groupe d'instance est actuellement utilisé par d'autres ressources.
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "Cet inventaire est appliqué à tous les nœuds de flux de travail de ce flux de travail ({0}) qui requiert un inventaire."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Cet inventaire est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr "Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?"
-#: screens/Application/Applications.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "C'est la seule fois où le secret du client sera révélé."
@@ -8613,19 +8935,19 @@ msgstr "C'est la seule fois où le secret du client sera révélé."
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "C'est la seule fois où la valeur du jeton et la valeur du jeton de rafraîchissement associée seront affichées."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Ce modèle de poste est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "Cette organisation est actuellement en cours de traitement par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Ce projet est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "Ce projet est actuellement en cours de synchronisation et ne peut être cliqué tant que le processus de synchronisation n'est pas terminé"
@@ -8645,38 +8967,51 @@ msgstr "Cette étape contient des erreurs"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe."
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
"their factory defaults. Are you sure you want to proceed?"
-msgstr "Ceci rétablira toutes les valeurs de configuration sur cette page à\n"
+msgstr ""
+"Ceci rétablira toutes les valeurs de configuration sur cette page à\n"
"à leurs valeurs par défaut. Êtes-vous sûr de vouloir continuer ?"
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40
msgid "This workflow does not have any nodes configured."
msgstr "Ce flux de travail ne comporte aucun nœud configuré."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Ce modèle de tâche de flux de travail est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?"
-#: components/Schedule/shared/FrequencyDetailSubform.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "Jeu."
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "Jeudi"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "Durée"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8686,7 +9021,7 @@ msgid ""
"performed."
msgstr "Délai en secondes à prévoir pour qu’un projet soit actualisé. Durant l’exécution des tâches et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle mise à jour du projet sera effectuée."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8695,24 +9030,24 @@ msgid ""
"inventory sync will be performed."
msgstr "Délai en secondes à prévoir pour qu'une synchronisation d'inventaire soit actualisée. Durant l’exécution du Job et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle synchronisation de l'inventaire sera effectuée."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "Expiré"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "Délai d'attente"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "Délai d'attente (minutes)"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "Délai d’attente (secondes)"
@@ -8720,11 +9055,11 @@ msgstr "Délai d’attente (secondes)"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "Pour créer un inventaire smart, utiliser des facts ansibles, et rendez-vous sur l’écran d’inventaire smart."
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "Pour réorganiser les questions de l'enquête, faites-les glisser et déposez-les à l'endroit souhaité."
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "Basculer la légende"
@@ -8732,12 +9067,12 @@ msgstr "Basculer la légende"
msgid "Toggle Password"
msgstr "Changer de mot de passe"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "Basculer les outils"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "Basculer l'hôte"
@@ -8776,7 +9111,7 @@ msgstr "Supprimer la programmation"
msgid "Toggle tools"
msgstr "Basculer les outils"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "Jeton"
@@ -8790,11 +9125,11 @@ msgstr "Informations sur le jeton"
msgid "Token not found."
msgstr "Jeton non trouvé."
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8805,37 +9140,42 @@ msgid "Tools"
msgstr "Outils"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "Top Pagination"
+#~ msgid "Top Pagination"
+#~ msgstr "Top Pagination"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "Vue topologique"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "Total Jobs"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "Total Nœuds"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "Total Jobs"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "Suivi des sous-modules"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "Suivre le dernier commit des sous-modules sur la branche"
@@ -8845,23 +9185,23 @@ msgid "Trial"
msgstr "Essai"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "Vrai"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "Mar."
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "Mardi"
@@ -8870,13 +9210,13 @@ msgstr "Mardi"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -8884,13 +9224,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -8898,15 +9238,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -8922,7 +9262,7 @@ msgstr "Type"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "Détails sur le type"
@@ -8940,11 +9280,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "Impossible de modifier l'inventaire sur un hôte."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "Non disponible"
@@ -8962,7 +9306,7 @@ msgstr "Ne plus suivre"
msgid "Unlimited"
msgstr "Illimité"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8984,28 +9328,28 @@ msgstr "Chaîne du jour non reconnue"
msgid "Unsaved changes modal"
msgstr "Annuler les modifications non enregistrées"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "Mettre à jour Révision au lancement"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "Mettre à jour au lancement"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "Mettre à jour lorsque le projet est actualisé"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "Mettre à jour les options"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "Mettre à jour Révision au lancement"
@@ -9013,7 +9357,7 @@ msgstr "Mettre à jour Révision au lancement"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "Mettre à jour les paramètres relatifs aux Jobs dans {brandName}"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Mettre à jour la clé de webhook"
@@ -9030,12 +9374,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "Téléchargez un manifeste d'abonnement Red Hat contenant votre abonnement. Pour générer votre manifeste d'abonnement, accédez à <0>subscription allocations0> (octroi d’allocations) sur le portail client de Red Hat."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "Utiliser SSL"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "Utiliser TLS"
@@ -9046,21 +9390,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr "Utilisez des messages personnalisés pour modifier le contenu des notifications envoyées lorsqu'un job démarre, réussit ou échoue. Utilisez des parenthèses en accolade pour accéder aux informations sur le job :"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "Capacité utilisée"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "Capacité utilisée"
@@ -9099,34 +9464,39 @@ msgstr "Analyse des utilisateurs"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "Analyse des utilisateurs et des résultats"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "Analyse des utilisateurs et des résultats"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "Informations sur l'utilisateur"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "Utilisateur non trouvé."
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "Jetons d'utilisateur"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9141,11 +9511,11 @@ msgstr "Nom d'utilisateur"
msgid "Username / password"
msgstr "Nom d'utilisateur / mot de passe"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9157,35 +9527,44 @@ msgstr "Utilisateurs"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "Variables"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "Variables demandées"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Mot de passe Archivage sécurisé"
@@ -9194,21 +9573,21 @@ msgstr "Mot de passe Archivage sécurisé"
msgid "Vault password | {credId}"
msgstr "Mot de passe Archivage sécurisé | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "Verbeux"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "Verbosité"
@@ -9220,8 +9599,8 @@ msgstr "Version"
msgid "View Azure AD settings"
msgstr "Voir les paramètres Azure AD"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "Afficher les détails des informations d'identification"
@@ -9237,15 +9616,15 @@ msgstr "Voir les paramètres de GitHub"
msgid "View Google OAuth 2.0 settings"
msgstr "Voir les paramètres de Google OAuth 2.0"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "Voir les détails de l'hôte"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "Voir les détails de l'instance"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9259,11 +9638,11 @@ msgstr "Voir les groupes d'inventaire"
msgid "View Inventory Host Details"
msgstr "Voir les détails de l'hôte de l'inventaire"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "Voir les exemples de JSON sur <0>www.json.org0>"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "Voir les détails de Job"
@@ -9287,11 +9666,11 @@ msgstr "Afficher les paramètres d'authentification divers"
msgid "View Miscellaneous System settings"
msgstr "Voir les paramètres divers du système"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "Voir les détails de l'organisation"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "Voir les détails du projet"
@@ -9312,8 +9691,8 @@ msgstr "Afficher les programmations"
msgid "View Settings"
msgstr "Afficher les paramètres"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "Afficher le questionnaire"
@@ -9321,12 +9700,12 @@ msgstr "Afficher le questionnaire"
msgid "View TACACS+ settings"
msgstr "Voir les paramètres TACACS+"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "Voir les détails de l'équipe"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "Voir les détails du modèle"
@@ -9334,7 +9713,7 @@ msgstr "Voir les détails du modèle"
msgid "View Tokens"
msgstr "Voir les jetons"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "Voir les détails de l'utilisateur"
@@ -9342,11 +9721,11 @@ msgstr "Voir les détails de l'utilisateur"
msgid "View User Interface settings"
msgstr "Voir les paramètres de l'interface utilisateur"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "Voir les détails pour l'approbation du flux de travail"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "Voir les exemples YALM sur <0>docs.ansible.com0>"
@@ -9355,15 +9734,15 @@ msgstr "Voir les exemples YALM sur <0>docs.ansible.com0>"
msgid "View activity stream"
msgstr "Afficher le flux d’activité"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "Voir toutes les informations d’identification."
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "Voir tous les hôtes."
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "Voir tous les inventaires."
@@ -9376,7 +9755,7 @@ msgstr "Voir tous les hôtes de l'inventaire."
msgid "View all Jobs"
msgstr "Voir tous les Jobs"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "Voir tous les Jobs."
@@ -9385,24 +9764,24 @@ msgstr "Voir tous les Jobs."
msgid "View all Notification Templates."
msgstr "Voir tous les modèles de notification."
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "Voir toutes les organisations."
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "Voir tous les projets."
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "Voir toutes les équipes."
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "Voir tous les modèles."
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "Voir tous les utilisateurs."
@@ -9410,24 +9789,24 @@ msgstr "Voir tous les utilisateurs."
msgid "View all Workflow Approvals."
msgstr "Voir toutes les approbations de flux de travail."
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "Voir toutes les applications."
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "Voir tous les types d'informations d'identification"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "Voir tous les environnements d'exécution"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "Voir tous les groupes d'instance"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "Voir tous les jobs de gestion"
@@ -9465,13 +9844,13 @@ msgid "View smart inventory host details"
msgstr "Voir les détails de l'hôte de l'inventaire smart"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "Affichages"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "Visualiseur"
@@ -9479,8 +9858,8 @@ msgstr "Visualiseur"
msgid "WARNING:"
msgstr "AVERTISSEMENT :"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "En attente"
@@ -9490,7 +9869,7 @@ msgid "Waiting for job output…"
msgstr "En attente du résultat du job…"
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "Avertissement"
@@ -9512,80 +9891,90 @@ msgstr "Nous n'avons pas pu localiser les abonnements associés à ce compte."
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Informations d'identification du webhook"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Informations d'identification du webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Clé du webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Service webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "URL du webhook"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Détails de webhook"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Les services webhook peuvent lancer des tâches avec ce modèle de tâche en effectuant une requête POST à cette URL."
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Les services webhook peuvent l'utiliser en tant que secret partagé."
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhooks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "Mer."
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "Mercredi"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "Semaine"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "Jour de la semaine"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "Jour du week-end"
@@ -9595,18 +9984,18 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr "Bienvenue sur la plate-forme Red Hat Ansible Automation ! Veuillez compléter les étapes ci-dessous pour activer votre abonnement."
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "Bienvenue sur {brandName}!"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr "Si non coché, une fusion aura lieu, combinant les variables locales à celles qui se trouvent dans la source externe."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9626,28 +10015,29 @@ msgid "Workflow Approval not found."
msgstr "Approbation du flux de travail non trouvée."
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "Approbations des flux de travail"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "Job de flux de travail"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "Modèle de Job de flux de travail"
@@ -9671,22 +10061,22 @@ msgstr "Lien vers le flux de travail"
msgid "Workflow Template"
msgstr "Modèle de flux de travail"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "Message de flux de travail approuvé"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "Corps de message de flux de travail approuvé"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "Message de flux de travail refusé"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "Corps de message de flux de travail refusé"
@@ -9696,6 +10086,10 @@ msgstr "Corps de message de flux de travail refusé"
msgid "Workflow documentation"
msgstr "Afficher la documentation"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "Modèles de Jobs de flux de travail"
@@ -9708,49 +10102,49 @@ msgstr "Modal de liaison de flux de travail"
msgid "Workflow node view modal"
msgstr "Vue modale du nœud de flux de travail"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "Message de flux de travail en attente"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "Corps du message d'exécution de flux de travail"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "Message d'expiration de flux de travail"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "Corps du message d’expiration de flux de travail"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "Écriture"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML :"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "Année"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "Oui"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "Vous n'êtes pas en mesure d'agir sur les autorisations de flux de travail suivantes : {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "Vous n'êtes pas en mesure d'agir sur les autorisations de flux de travail suivantes : {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "Vous n'êtes pas en mesure d'agir sur les autorisations de flux de travail suivantes : {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "Vous n'êtes pas en mesure d'agir sur les autorisations de flux de travail suivantes : {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9764,7 +10158,7 @@ msgstr "Vous n'avez pas la permission de supprimer les groupes suivants : {items
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "Vous n'avez pas l'autorisation de supprimer : {pluralizedItemName}: {itemsUnableToDelete}"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "Vous n'avez pas la permission de dissocier les éléments suivants : {itemsUnableToDisassociate}"
@@ -9774,7 +10168,7 @@ msgid ""
"message. For more information, refer to the"
msgstr "Vous pouvez appliquer un certain nombre de variables possibles dans le message. Pour plus d'informations, reportez-vous au"
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "Votre session a expiré. Veuillez vous connecter pour continuer là où vous vous êtes arrêté."
@@ -9800,18 +10194,18 @@ msgstr "Zoom avant"
msgid "Zoom out"
msgstr "Zoom arrière"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "une nouvelle clé webhook sera générée lors de la sauvegarde."
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "une nouvelle url de webhook sera générée lors de la sauvegarde."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "et cliquez sur Mise à jour de la révision au lancement"
@@ -9832,7 +10226,7 @@ msgstr "annuler supprimer"
msgid "cancel edit login redirect"
msgstr "annuler modifier connecter rediriger"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "commande"
@@ -9867,38 +10261,38 @@ msgid "disassociate"
msgstr "dissocier"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "documentation"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "Modifier"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "crypté"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "pour plus d'infos."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "pour plus d'informations."
@@ -9906,15 +10300,24 @@ msgstr "pour plus d'informations."
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "ici"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "ici."
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "hôtes"
@@ -9931,7 +10334,7 @@ msgstr "utilisateur ldap"
msgid "login type"
msgstr "type de connexion"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "min"
@@ -9944,11 +10347,11 @@ msgid "node"
msgstr "noeud"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "de"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "l'option à la"
@@ -9969,21 +10372,21 @@ msgstr "par page"
msgid "relaunch jobs"
msgstr "relancer les Jobs"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "sec"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "secondes"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "sélectionner un module"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "choisir la verbosité"
+#~ msgid "select verbosity"
+#~ msgstr "choisir la verbosité"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -9993,8 +10396,8 @@ msgstr "depuis"
msgid "social login"
msgstr "social login"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "branche du contrôle de la source"
@@ -10006,7 +10409,7 @@ msgstr "système"
msgid "timed out"
msgstr "expiré"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "basculer les changements"
@@ -10014,7 +10417,7 @@ msgstr "basculer les changements"
msgid "updated"
msgstr "actualisé"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "clé webhook de modèles de tâche flux de travail"
@@ -10038,15 +10441,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10066,7 +10469,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10078,8 +10481,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10107,38 +10510,38 @@ msgstr "{brandName} logo"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} par <0>{username}0>"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} min {seconds} sec"
diff --git a/awx/ui/src/locales/ja/messages.po b/awx/ui/src/locales/ja/messages.po
index a2d5959540..816bf1357b 100644
--- a/awx/ui/src/locales/ja/messages.po
+++ b/awx/ui/src/locales/ja/messages.po
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(最初の 10 件に制限)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(起動プロンプト)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "*このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (プロジェクト root)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (正常)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (警告)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (情報)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (詳細)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (デバッグ)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (より詳細)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (デバッグ)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (接続デバッグ)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (WinRM デバッグ)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "サブスクリプションマニフェストは、Red Hat サブスク
msgid "ALL"
msgstr "すべて"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "API サービス/統合キー"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "API トークン"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "API サービス/統合キー"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "情報"
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "アクセス"
@@ -158,12 +127,12 @@ msgstr "アクセス"
msgid "Access Token Expiration"
msgstr "アクセストークンの有効期限"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "アカウント SID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "アカウントトークン"
@@ -171,18 +140,19 @@ msgstr "アカウントトークン"
msgid "Action"
msgstr "アクション"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "アクション"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "アクション"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "アクション"
msgid "Actions"
msgstr "アクション"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "アクティビティー"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "アクティビティーストリーム"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "アクティビティーストリームのタイプセレクター"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "アクター"
@@ -274,19 +244,19 @@ msgstr "リンクの追加"
msgid "Add Node"
msgstr "ノードの追加"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "質問の追加"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "ロールの追加"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "チームロールの追加"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "ユーザーロールの追加"
@@ -331,7 +301,7 @@ msgstr "新規グループの追加"
msgid "Add new host"
msgstr "新規ホストの追加"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "リソースタイプの追加"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "ワークフローテンプレートの追加"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "管理"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "詳細"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "高度な検索に関するドキュメント"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "詳細な検索値の入力"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "SCM リビジョンを変更するプロジェクトの毎回の更新後に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。これは、Ansible インベントリーの .ini ファイル形式のような静的コンテンツが対象であることが意図されています。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "指定した実行回数後"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "アラートモーダル"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "すべて"
@@ -402,29 +372,29 @@ msgstr "すべてのジョブタイプ"
msgid "All jobs"
msgstr "すべてのジョブ"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "ブランチの上書き許可"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "ブランチの上書き許可"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr "このプロジェクトを使用するジョブテンプレートで Source Control ブランチまたはリビジョンを変更できるようにします。"
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "許可された URI リスト (スペース区切り)"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "常時"
@@ -448,27 +418,27 @@ msgstr "Ansible Tower ドキュメント。"
msgid "Answer type"
msgstr "回答タイプ"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "回答の変数名"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "任意"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "アプリケーション"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "アプリケーション名"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "アプリケーション情報"
@@ -477,57 +447,58 @@ msgstr "アプリケーション情報"
msgid "Application name"
msgstr "アプリケーション名"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "アプリケーションが見つかりません。"
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "アプリケーション"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "アプリケーションおよびトークン"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "承認"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "承認"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "承認済"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "承認済み - {0}。詳細は、アクティビティーストリームを参照してください。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "{0} - {1} により承認済"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "4 月"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "このジョブを取り消してよろしいですか?"
@@ -571,16 +542,16 @@ msgstr "{1} から {0} のアクセスを削除しますか? これを行うと
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "{username} からの {0} のアクセスを削除してもよろしいですか?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "このジョブを取り消す要求を送信してよろしいですか?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "引数"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "アーティファクト"
@@ -602,7 +573,7 @@ msgstr "関連付けモーダル"
msgid "At least one value must be selected for this field."
msgstr "このフィールドには、少なくとも 1 つの値を選択する必要があります。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "8 月"
@@ -614,18 +585,27 @@ msgstr "認証"
msgid "Authorization Code Expiration"
msgstr "認証コードの有効期限"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "認証付与タイプ"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "自動"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -634,8 +614,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Azure AD の設定"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -668,7 +648,7 @@ msgstr "ホストに戻る"
msgid "Back to Instance Groups"
msgstr "インスタンスグループに戻る"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "インスタンスに戻る"
@@ -759,7 +739,7 @@ msgstr "インスタンスグループに戻る"
msgid "Back to management jobs"
msgstr "管理ジョブに戻る"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -767,11 +747,11 @@ msgid ""
"path used to locate playbooks."
msgstr "Playbook を見つけるために使用されるベースパスです。このパス内にあるディレクトリーは Playbook ディレクトリーのドロップダウンに一覧表示されます。ベースパスと選択されたPlaybook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "Basic 認証パスワード"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -787,43 +767,47 @@ msgstr "ブランドイメージ"
msgid "Browse"
msgstr "参照"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "参照…"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "デフォルトでは、サービスの使用状況に関する解析データを収集して、Red Hat に送信します。サービスが収集するデータにはカテゴリーが 2 種類あります。詳細情報は、<0>Tower ドキュメントのページ<0> を参照してください。この機能を無効にするには、以下のボックスのチェックを解除します。"
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "デフォルトでは、サービスの使用状況に関する解析データを収集して、Red Hat に送信します。サービスが収集するデータにはカテゴリーが 2 種類あります。詳細情報は、<0>Tower ドキュメントのページ<0> を参照してください。この機能を無効にするには、以下のボックスのチェックを解除します。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "キャッシュタイムアウト"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "キャッシュタイムアウト"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "キャッシュのタイムアウト (秒)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,11 +818,13 @@ msgstr "キャッシュのタイムアウト (秒)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -859,7 +845,7 @@ msgstr "キャッシュのタイムアウト (秒)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -868,32 +854,34 @@ msgstr "キャッシュのタイムアウト (秒)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "取り消し"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "インベントリーソース同期の取り消し"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "ジョブの取り消し"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "プロジェクトの同期の取り消し"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "同期の取り消し"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "ジョブの取り消し"
@@ -905,7 +893,7 @@ msgstr "リンク変更の取り消し"
msgid "Cancel link removal"
msgstr "リンク削除の取り消し"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "ルックアップの取り消し"
@@ -931,19 +919,23 @@ msgid "Cancel subscription edit"
msgstr "サブスクリプションの編集の取り消し"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "{0} の取り消し"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "取り消し済み"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -959,10 +951,10 @@ msgstr "ホップノードで可用性をチェックをできません。"
msgid "Capacity"
msgstr "容量"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -988,13 +980,13 @@ msgstr "regex で大文字小文字の区別なし。"
msgid "Case-insensitive version of startswith."
msgstr "startswith で大文字小文字の区別なし。"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
msgstr "この場所を変更するには {brandName} のデプロイ時に PROJECTS_ROOT を変更します。"
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "変更済み"
@@ -1003,13 +995,13 @@ msgstr "変更済み"
msgid "Changes"
msgstr "変更"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "チャネル"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "チェック"
@@ -1033,20 +1025,20 @@ msgstr "通知タイプの選択"
msgid "Choose a Playbook Directory"
msgstr "Playbook ディレクトリーの選択"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "ソースコントロールタイプの選択"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Webhook サービスの選択"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "ジョブタイプの選択"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "モジュールの選択"
@@ -1054,7 +1046,7 @@ msgstr "モジュールの選択"
msgid "Choose a source"
msgstr "ソースの選択"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "HTTP メソッドの選択"
@@ -1073,20 +1065,20 @@ msgstr "選択したリソースに適用するロールを選択します。選
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.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "新しいロールを受け取るリソースのタイプを選択します。たとえば、一連のユーザーに新しいロールを追加する場合は、ユーザーを選択して次へをクリックしてください。次のステップで特定のリソースを選択できるようになります。"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "クリーニング"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "消去"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "すべてのフィルターの解除"
@@ -1099,7 +1091,7 @@ msgstr "サブスクリプションの解除"
msgid "Clear subscription selection"
msgstr "サブスクリプションの選択解除"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "使用可能なノードをクリックして、新しいリンクを作成します。キャンセルするには、グラフの外側をクリックしてください。"
@@ -1127,29 +1119,29 @@ msgstr "クリックして、 Survey の質問の順序を並べ替えます"
msgid "Click to toggle default value"
msgstr "クリックしてデフォルト値を切り替えます"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "クリックしてジョブの詳細を表示"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "クライアント ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "クライアント識別子"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "クライアント識別子"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "クライアントシークレット"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "クライアントタイプ"
@@ -1178,24 +1170,36 @@ msgstr "すべてのジョブイベントを折りたたむ"
msgid "Collapse section"
msgstr "セクションを折りたたむ"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "コマンド"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "有効"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "同時実行ジョブ"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1215,11 +1219,11 @@ msgstr "ローカル認証の無効化の確認"
msgid "Confirm Password"
msgstr "パスワードの確認"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "取り消しジョブの確認"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "取り消しの確認"
@@ -1251,7 +1255,7 @@ msgstr "すべて元に戻すことを確認"
msgid "Confirm selection"
msgstr "選択の確認"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "コンテナーグループ"
@@ -1283,31 +1287,40 @@ msgstr "コントロール"
msgid "Control node"
msgstr "コントロールノード"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "インベントリーソースの更新ジョブ用に Ansible が生成する出力のレベルを制御します。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。"
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。"
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。"
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "収束 (コンバージェンス)"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "収束 (コンバージェンス) 選択"
@@ -1335,15 +1348,15 @@ msgstr "インベントリーのコピー"
msgid "Copy Notification Template"
msgstr "通知テンプレートのコピー"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "プロジェクトのコピー"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "テンプレートのコピー"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "完全なリビジョンをクリップボードにコピーします。"
@@ -1352,33 +1365,35 @@ msgstr "完全なリビジョンをクリップボードにコピーします。
msgid "Copyright"
msgstr "著作権"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "作成"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "新規アプリケーションの作成"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "新規認証情報の作成"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "新規ホストの作成"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "新規ジョブテンプレートの作成"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "新規通知テンプレートの作成"
@@ -1387,20 +1402,20 @@ msgstr "新規通知テンプレートの作成"
msgid "Create New Organization"
msgstr "新規組織の作成"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "新規プロジェクトの作成"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "新規スケジュールの作成"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "新規チームの作成"
@@ -1409,7 +1424,7 @@ msgstr "新規チームの作成"
msgid "Create New User"
msgstr "新規ユーザーの作成"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "新規ワークフローテンプレートの作成"
@@ -1417,8 +1432,8 @@ msgstr "新規ワークフローテンプレートの作成"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "フィルターを適用して新しいスマートインベントリーを作成"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "新規コンテナーグループの作成"
@@ -1435,30 +1450,30 @@ msgstr "新規認証情報タイプの作成"
msgid "Create new execution environment"
msgstr "新規実行環境の作成"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "新規グループの作成"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "新規ホストの作成"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "新規インスタンスグループの作成"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "新規インベントリーの作成"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "新規スマートインベントリーの作成"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "新規ソースの作成"
@@ -1467,39 +1482,39 @@ msgid "Create user token"
msgstr "ユーザートークンの作成"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "作成日時"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1510,7 +1525,7 @@ msgstr "作成日時"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1519,7 +1534,7 @@ msgstr "作成日時"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1547,24 +1562,23 @@ msgstr "作成者 (ユーザー名)"
msgid "Created by (username)"
msgstr "作成者 (ユーザー名)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "認証情報"
@@ -1577,14 +1591,15 @@ msgstr "認証情報の入力ソース"
msgid "Credential Name"
msgstr "認証情報名"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "認証情報タイプ"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1592,11 +1607,11 @@ msgstr "認証情報タイプ"
msgid "Credential Types"
msgstr "認証情報タイプ"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "認証情報が正常にコピーされました"
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "認証情報が見つかりません。"
@@ -1605,15 +1620,19 @@ msgstr "認証情報が見つかりません。"
msgid "Credential passwords"
msgstr "認証情報のパスワード"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "Kubernetes または OpenShift での認証に使用する認証情報。\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。空白のままにすると、基になる Pod のサービスアカウントが使用されます。"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "保護されたコンテナーレジストリーで認証するための認証情報。"
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "認証情報タイプが見つかりません。"
@@ -1622,20 +1641,20 @@ msgstr "認証情報タイプが見つかりません。"
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "認証情報"
@@ -1648,6 +1667,10 @@ msgstr "起動時にパスワードを必要とする認証情報は許可され
msgid "Current page"
msgstr "現在のページ"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "カスタム Pod 仕様"
@@ -1662,7 +1685,7 @@ msgstr "カスタム仮想環境 {0} は、実行環境に置き換える必要
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "カスタム仮想環境 {0} は、実行環境に置き換える必要があります。実行環境への移行の詳細については、<0>ドキュメント0> を参照してください。"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "カスタム仮想環境 {virtualEnvironment} は、実行環境に置き換える必要があります。実行環境への移行の詳細については、<0>ドキュメント0> を参照してください。"
@@ -1685,7 +1708,7 @@ msgstr "削除済み"
msgid "Dashboard"
msgstr "ダッシュボード"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "ダッシュボード (すべてのアクティビティー)"
@@ -1697,14 +1720,14 @@ msgstr "データ保持期間"
msgid "Date"
msgstr "日付"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "日"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "データの保持日数"
@@ -1720,11 +1743,11 @@ msgstr "残りの日数"
msgid "Days to keep"
msgstr "保持する日数"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "デバッグ"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "12 月"
@@ -1735,9 +1758,9 @@ msgstr "12 月"
msgid "Default"
msgstr "デフォルト"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "デフォルトの応答"
@@ -1745,9 +1768,9 @@ msgstr "デフォルトの応答"
msgid "Default Execution Environment"
msgstr "デフォルトの実行環境"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "デフォルトの応答"
@@ -1766,35 +1789,35 @@ msgstr "システムレベルの機能および関数の定義"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "削除"
@@ -1802,42 +1825,42 @@ msgstr "削除"
msgid "Delete All Groups and Hosts"
msgstr "すべてのグループおよびホストの削除"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "認証情報の削除"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "実行環境の削除"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "ホストの削除"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "インベントリーの削除"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "ジョブの削除"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "ジョブテンプレートの削除"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "通知の削除"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "組織の削除"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "プロジェクトの削除"
@@ -1845,7 +1868,7 @@ msgstr "プロジェクトの削除"
msgid "Delete Questions"
msgstr "質問の削除"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "スケジュールの削除"
@@ -1861,15 +1884,15 @@ msgstr "チームの削除"
msgid "Delete User"
msgstr "ユーザーの削除"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "ユーザートークンの削除"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "ワークフロー承認の削除"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "新規ワークフロージョブテンプレートの削除"
@@ -1878,28 +1901,28 @@ msgstr "新規ワークフロージョブテンプレートの削除"
msgid "Delete all nodes"
msgstr "すべてのノードの削除"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "アプリケーションの削除"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "認証情報タイプの削除"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "エラーの削除"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "インスタンスグループの削除"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "インベントリーソースの削除"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "スマートインベントリーの削除"
@@ -1907,7 +1930,7 @@ msgstr "スマートインベントリーの削除"
msgid "Delete survey question"
msgstr "Survey の質問の削除"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1916,7 +1939,7 @@ msgid ""
msgstr "更新の実行前にローカルリポジトリーを完全に削除します。リポジトリーのサイズによっては、更新の完了までにかかる時間が大幅に増大します。"
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "プロジェクトを削除してから同期する"
@@ -1932,14 +1955,17 @@ msgstr "このノードの削除"
msgid "Delete {pluralizedItemName}?"
msgstr "{pluralizedItemName} を削除しますか?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "削除済み"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1951,67 +1977,71 @@ msgstr "削除エラー"
msgid "Deletion error"
msgstr "削除エラー"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "拒否済み"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "拒否されました - {0}。詳細については、アクティビティーストリームを参照してください。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "{0} - {1} により拒否済み"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "拒否"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "非推奨"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2020,93 +2050,96 @@ msgstr "非推奨"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "説明"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "送信先チャネル"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "送信先チャネルまたはユーザー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "送信先 SMS 番号"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "送信先 SMS 番号"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "送信先チャネル"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "送信先チャネルまたはユーザー"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2141,53 +2174,53 @@ msgstr "送信先チャネルまたはユーザー"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "詳細"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "詳細タブ"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "ダイレクトキー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "SSL 検証の無効化"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "SSL 検証の無効化"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "無効化"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2202,12 +2235,12 @@ msgstr "関連付けの解除"
msgid "Disassociate group from host?"
msgstr "グループのホストとの関連付けを解除しますか?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "ホストのグループとの関連付けを解除しますか?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "インスタンスグループへのインスタンスの関連付けを解除しますか?"
@@ -2234,18 +2267,23 @@ msgid "Disassociate?"
msgstr "関連付けを解除しますか?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "同期する前にローカル変更を破棄する"
#: screens/Template/shared/JobTemplateForm.js:479
-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 "このジョブテンプレートで実施される作業を、指定した数のジョブスライスに分割し、それぞれインベントリーの部分に対して同じタスクを実行します。"
+#~ 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 "このジョブテンプレートで実施される作業を、指定した数のジョブスライスに分割し、それぞれインベントリーの部分に対して同じタスクを実行します。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "ドキュメント。"
@@ -2261,55 +2299,71 @@ msgstr "完了"
msgid "Download Output"
msgstr "出力のダウンロード"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "ここにファイルをドラッグするか、参照してアップロード"
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "メール"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "メールオプション"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
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.js:96
+#: screens/Project/shared/Project.helptext.js:120
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.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2337,10 +2391,10 @@ msgstr "このプロジェクトでジョブを実行する際は常に、ジョ
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2356,14 +2410,14 @@ msgstr "認証情報の編集"
msgid "Edit Credential Plugin Configuration"
msgstr "認証情報プラグイン設定の編集"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2388,8 +2442,8 @@ msgstr "認証情報プラグイン設定の編集"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "詳細の編集"
@@ -2406,11 +2460,11 @@ msgstr "実行環境の編集"
msgid "Edit Group"
msgstr "グループの編集"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "ホストの編集"
@@ -2445,18 +2499,18 @@ msgstr "順序の編集"
msgid "Edit Organization"
msgstr "組織の編集"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "プロジェクトの編集"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "質問の編集"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "スケジュールの編集"
@@ -2468,15 +2522,15 @@ msgstr "ソースの編集"
msgid "Edit Survey"
msgstr "Survey の編集"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "チームの編集"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "テンプレートの編集"
@@ -2497,12 +2551,12 @@ msgstr "認証情報タイプの編集"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "詳細の編集"
@@ -2511,7 +2565,7 @@ msgstr "詳細の編集"
msgid "Edit group"
msgstr "グループの編集"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "ホストの編集"
@@ -2533,13 +2587,13 @@ msgstr "このリンクの編集"
msgid "Edit this node"
msgstr "このノードの編集"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "ワークフローの編集"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "経過時間"
@@ -2559,15 +2613,15 @@ msgstr "ジョブ実行の経過時間"
msgid "Email"
msgstr "メール"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "メールオプション"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "同時実行ジョブの有効化"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "ファクトストレージの有効化"
@@ -2575,14 +2629,14 @@ msgstr "ファクトストレージの有効化"
msgid "Enable HTTPS certificate verification"
msgstr "HTTPS 証明書の検証を有効化"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Webhook の有効化"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "このワークフローのジョブテンプレートの Webhook を有効にします。"
@@ -2594,8 +2648,8 @@ msgstr "外部ログの有効化"
msgid "Enable log system tracking facts individually"
msgstr "システムトラッキングファクトを個別に有効化"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "権限昇格の有効化"
@@ -2603,7 +2657,7 @@ msgstr "権限昇格の有効化"
msgid "Enable simplified login for your {brandName} applications"
msgstr "{brandName} アプリケーションのログインの簡素化の有効化"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "このテンプレートの Webhook を有効にします。"
@@ -2613,29 +2667,29 @@ msgstr "このテンプレートの Webhook を有効にします。"
msgid "Enabled"
msgstr "有効化"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "有効なオプション"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "有効な値"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "有効な変数"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2644,19 +2698,23 @@ msgid ""
msgstr "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {brandName} に接続でき、このジョブテンプレートを使用して接続の更新を要求できます。"
#: screens/Template/shared/JobTemplateForm.js:568
-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 "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {brandName} に接続でき、このジョブテンプレートを使用して接続の更新を要求できます。"
+#~ 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 "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {brandName} に接続でき、このジョブテンプレートを使用して接続の更新を要求できます。"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "暗号化"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "終了"
@@ -2668,7 +2726,7 @@ msgstr "使用許諾契約書"
msgid "End date"
msgstr "終了日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "終了日時"
@@ -2704,95 +2762,99 @@ msgid ""
msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文間で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
#: screens/Inventory/shared/InventoryForm.js:92
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
-msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
+#~ msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "各行に、コンマなしでアノテーションタグを 1 つ入力してください。"
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "各行に、コンマなしでアノテーションタグを 1 つ入力してください。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "各行に 1 つの IRC チャンネルまたはユーザー名を入力します。チャンネルのシャープ記号 (#) およびユーザーのアットマーク (@) 記号は不要です。"
+#~ 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 "各行に 1 つの IRC チャンネルまたはユーザー名を入力します。チャンネルのシャープ記号 (#) およびユーザーのアットマーク (@) 記号は不要です。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "それぞれの行に 1 つの Slack チャンネルを入力します。チャンネルにはシャープ記号 (#) が必要です。特定のメッセージに対して応答する、またはスレッドを開始するには、チャンネルに 16 桁の親メッセージ ID を追加します。10 桁目の後にピリオド (.) を手動で挿入する必要があります (例: #destination-channel, 1231257890.006423)。Slack を参照してください。"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr "それぞれの行に 1 つの Slack チャンネルを入力します。チャンネルにはシャープ記号 (#) が必要です。特定のメッセージに対して応答する、またはスレッドを開始するには、チャンネルに 16 桁の親メッセージ ID を追加します。10 桁目の後にピリオド (.) を手動で挿入する必要があります (例: #destination-channel, 1231257890.006423)。Slack を参照してください。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "各行に 1 つのメールアドレスを入力し、この通知タイプの受信者リストを作成します。"
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr "各行に 1 つのメールアドレスを入力し、この通知タイプの受信者リストを作成します。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "1 行に 1 つの電話番号を入力して、SMS メッセージのルーティング先を指定します。電話番号は +11231231234 の形式にする必要があります。詳細は、Twilio のドキュメントを参照してください"
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr "1 行に 1 つの電話番号を入力して、SMS メッセージのルーティング先を指定します。電話番号は +11231231234 の形式にする必要があります。詳細は、Twilio のドキュメントを参照してください"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。"
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。"
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>Insights1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>Insights1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>Tower1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>Tower1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>aws_ec21> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>aws_ec21> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>azure_rm1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>azure_rm1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>foreman1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>foreman1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>gcp_compute1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>gcp_compute1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>openstack1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>openstack1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>ovirt1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>ovirt1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>vmware_vm_inventory1> プラグイン設定ガイドを参照してください。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン0> および <1>vmware_vm_inventory1> プラグイン設定ガイドを参照してください。"
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "JSON または YAML 構文のいずれかを使用して変数を入力します。ラジオボタンを使用してこの構文を切り替えます。"
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "JSON または YAML 構文のいずれかを使用して変数を入力します。ラジオボタンを使用してこの構文を切り替えます。"
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "エラー"
@@ -2801,90 +2863,90 @@ msgstr "エラー"
msgid "Error fetching updated project"
msgstr "更新されたプロジェクトの取得エラー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "エラーメッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "エラーメッセージボディー"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "ワークフローの保存中にエラー!"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2895,13 +2957,16 @@ msgstr "ワークフローの保存中にエラー!"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "エラー!"
@@ -2909,12 +2974,12 @@ msgstr "エラー!"
msgid "Error:"
msgstr "エラー:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "エラー"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2932,11 +2997,11 @@ msgstr "イベント詳細モーダル"
msgid "Event summary not available"
msgstr "イベントの概要はありません"
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "イベント"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "毎分 {0} 回"
@@ -2952,35 +3017,35 @@ msgstr "完全一致 (指定されない場合のデフォルトのルックア
msgid "Exact search on id field."
msgstr "id フィールドでの正確な検索。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "GIT ソースコントロールの URL の例は次のとおりです。"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "リモートアーカイブ Source Control のサンプル URL には以下が含まれます:"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "Subversion Source Control のサンプル URL には以下が含まれます:"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "以下に例を示します。"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "例:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "親ノードの最終状態に関係なく実行します。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "親ノードが障害状態になったときに実行します。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "親ノードが正常な状態になったときに実行します。"
@@ -2991,29 +3056,29 @@ msgstr "実行"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "実行環境"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "実行環境がありません"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3021,7 +3086,7 @@ msgstr "実行環境がありません"
msgid "Execution Environments"
msgstr "実行環境"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "実行ノード"
@@ -3029,11 +3094,11 @@ msgstr "実行ノード"
msgid "Execution environment copied successfully"
msgstr "実行環境が正常にコピーされました"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "実行環境が存在しないか、削除されています。"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "実行環境が見つかりません。"
@@ -3050,7 +3115,7 @@ msgstr "保存せずに終了"
msgid "Expand"
msgstr "展開"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "全列を展開"
@@ -3072,15 +3137,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "client_email、project_id、または private_key の少なくとも 1 つがファイルに存在する必要があります。"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "有効期限"
@@ -3092,13 +3157,12 @@ msgstr "有効期限:"
msgid "Expires on UTC"
msgstr "UTC の有効期限"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "{0} の有効期限"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "説明"
@@ -3106,35 +3170,39 @@ msgstr "説明"
msgid "External Secret Management System"
msgstr "外部シークレット管理システム"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "追加変数"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "終了日時:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "ファクトストレージ"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "ファクト"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3159,15 +3227,16 @@ msgstr "失敗したホスト"
msgid "Failed jobs"
msgstr "失敗したジョブ"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を承認できませんでした。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "ワークフローの承認を承認できませんでした。"
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "ロールを正しく割り当てられませんでした"
@@ -3177,31 +3246,36 @@ msgid "Failed to associate role"
msgstr "ロールの関連付けに失敗しました"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "関連付けに失敗しました。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "インベントリーソースの同期の取り消しに失敗しました。"
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "プロジェクトの同期の取り消しに失敗しました。"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "1 つ以上のジョブを取り消すことができませんでした。"
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "{0} を取り消すことができませんでした。"
@@ -3217,20 +3291,20 @@ msgstr "実行環境をコピーできませんでした"
msgid "Failed to copy inventory."
msgstr "インベントリーをコピーできませんでした。"
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "プロジェクトをコピーできませんでした。"
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "テンプレートをコピーできませんでした。"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "アプリケーションを削除できませんでした。"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "認証情報を削除できませんでした。"
@@ -3238,24 +3312,24 @@ msgstr "認証情報を削除できませんでした。"
msgid "Failed to delete group {0}."
msgstr "グループ {0} を削除できませんでした。"
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "ホストを削除できませんでした。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "インベントリーソース {name} を削除できませんでした。"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "インベントリーを削除できませんでした。"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "ジョブテンプレートを削除できませんでした。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "通知を削除できませんでした。"
@@ -3267,7 +3341,7 @@ msgstr "1 つ以上のアプリケーションを削除できませんでした
msgid "Failed to delete one or more credential types."
msgstr "1 つ以上の認証情報タイプを削除できませんでした。"
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "1 つ以上の認証情報を削除できませんでした。"
@@ -3279,8 +3353,8 @@ msgstr "1 つ以上の実行環境を削除できませんでした。"
msgid "Failed to delete one or more groups."
msgstr "1 つ以上のグループを削除できませんでした。"
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "1 つ以上のホストを削除できませんでした。"
@@ -3292,15 +3366,15 @@ msgstr "1 つ以上のインスタンスグループを削除できませんで
msgid "Failed to delete one or more inventories."
msgstr "1 つ以上のインベントリーを削除できませんでした。"
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "1 つ以上のインベントリーリソースを削除できませんでした。"
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "1 つ以上のジョブテンプレートを削除できませんでした"
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "1 つ以上のジョブを削除できませんでした。"
@@ -3324,7 +3398,7 @@ msgstr "1 つ以上のスケジュールを削除できませんでした。"
msgid "Failed to delete one or more teams."
msgstr "1 つ以上のチームを削除できませんでした。"
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "1 つ以上のテンプレートを削除できませんでした。"
@@ -3332,7 +3406,7 @@ msgstr "1 つ以上のテンプレートを削除できませんでした。"
msgid "Failed to delete one or more tokens."
msgstr "1 つ以上のトークンを削除できませんでした。"
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "1 つ以上のユーザートークンを削除できませんでした。"
@@ -3340,19 +3414,19 @@ msgstr "1 つ以上のユーザートークンを削除できませんでした
msgid "Failed to delete one or more users."
msgstr "1 人以上のユーザーを削除できませんでした。"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を削除できませんでした。"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "組織を削除できませんでした。"
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "プロジェクトを削除できませんでした。"
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "ロールを削除できませんでした。"
@@ -3361,11 +3435,11 @@ msgstr "ロールを削除できませんでした。"
msgid "Failed to delete role."
msgstr "ロールを削除できませんでした。"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "スケジュールを削除できませんでした。"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "スマートインベントリーを削除できませんでした。"
@@ -3377,11 +3451,11 @@ msgstr "チームを削除できませんでした。"
msgid "Failed to delete user."
msgstr "ユーザーを削除できませんでした。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "ワークフロー承認を削除できませんでした。"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "ワークフロージョブテンプレートを削除できませんでした。"
@@ -3390,11 +3464,11 @@ msgstr "ワークフロージョブテンプレートを削除できませんで
msgid "Failed to delete {name}."
msgstr "{name} を削除できませんでした。"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を拒否できませんでした。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "ワークフローの承認を拒否できませんでした。"
@@ -3404,13 +3478,13 @@ msgstr "ワークフローの承認を拒否できませんでした。"
msgid "Failed to disassociate one or more groups."
msgstr "1 つ以上のグループの関連付けを解除できませんでした。"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "1 つ以上のホストの関連付けを解除できませんでした。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "1 つ以上のインスタンスの関連付けを解除できませんでした。"
@@ -3418,7 +3492,7 @@ msgstr "1 つ以上のインスタンスの関連付けを解除できません
msgid "Failed to disassociate one or more teams."
msgstr "1 つ以上のチームの関連付けを解除できませんでした。"
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "カスタムログイン構成設定を取得できません。代わりに、システムのデフォルトが表示されます。"
@@ -3426,7 +3500,7 @@ msgstr "カスタムログイン構成設定を取得できません。代わり
msgid "Failed to fetch the updated project data."
msgstr "更新されたプロジェクトデータの取得に失敗しました。"
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3444,7 +3518,7 @@ msgstr "フルノードリソースオブジェクトを取得できませんで
msgid "Failed to retrieve node credentials."
msgstr "ノード認証情報を取得できませんでした。"
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "1 つ以上のインスタンスで可用性をチェックできませんでした。"
@@ -3457,11 +3531,11 @@ msgstr "テスト通知の送信に失敗しました。"
msgid "Failed to sync inventory source."
msgstr "インベントリーソースを同期できませんでした。"
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "プロジェクトを同期できませんでした。"
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "一部またはすべてのインベントリーソースを同期できませんでした。"
@@ -3481,9 +3555,9 @@ msgstr "通知の切り替えに失敗しました。"
msgid "Failed to toggle schedule."
msgstr "スケジュールの切り替えに失敗しました。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "容量調整の更新に失敗しました。"
@@ -3492,7 +3566,7 @@ msgstr "容量調整の更新に失敗しました。"
msgid "Failed to update survey."
msgstr "調査の更新に失敗しました。"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "ユーザートークンに失敗しました。"
@@ -3501,17 +3575,17 @@ msgstr "ユーザートークンに失敗しました。"
msgid "Failure"
msgstr "失敗"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "False"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "2 月"
@@ -3535,11 +3609,11 @@ msgstr "特定の正規表現に一致するフィールド。"
msgid "Field starts with value."
msgstr "値で開始するフィールド。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "第 5"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "ファイルの相違点"
@@ -3551,28 +3625,28 @@ msgstr "ファイルのアップロードが拒否されました。単一の .j
msgid "File, directory or script"
msgstr "ファイル、ディレクトリー、またはスクリプト"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "{name} 別にフィルター"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "終了時間"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "終了日時"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "最初"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3581,17 +3655,17 @@ msgstr "最初"
msgid "First Name"
msgstr "名"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "初回実行日時"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "名"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "先にキーを選択"
@@ -3613,51 +3687,57 @@ msgid "Follow"
msgstr "フォロー"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。"
+#~ 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 "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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 "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "詳しい情報は以下の情報を参照してください:"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "フォーク"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "第 4"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "頻度の詳細"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "頻度が期待値と一致しませんでした"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "金"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "金曜"
@@ -3669,7 +3749,7 @@ msgstr "ID、名前、または説明フィールドのあいまい検索。"
msgid "Fuzzy search on name field."
msgstr "名前フィールドのあいまい検索。"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Galaxy 認証情報"
@@ -3678,7 +3758,7 @@ msgstr "Galaxy 認証情報"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Galaxy 認証情報は組織が所有している必要があります。"
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "ファクトの収集"
@@ -3693,13 +3773,14 @@ msgstr "サブスクリプションの取得"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3737,17 +3818,17 @@ msgstr "GitHub チーム"
msgid "GitHub settings"
msgstr "GitHub 設定"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "システム全体で利用可能"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "システム全体で利用可能な実行環境を特定の組織に再割り当てすることはできません"
@@ -3784,12 +3865,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Grafana API キー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "Grafana URL"
@@ -3805,7 +3886,7 @@ msgstr "Greater than or equal to の比較条件"
msgid "Group"
msgstr "グループ"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "グループの詳細"
@@ -3813,12 +3894,12 @@ msgstr "グループの詳細"
msgid "Group type"
msgstr "グループタイプ"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3827,13 +3908,13 @@ msgstr "グループタイプ"
msgid "Groups"
msgstr "グループ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "HTTP ヘッダー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "HTTP メソッド"
@@ -3841,10 +3922,10 @@ msgstr "HTTP メソッド"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "可用性チェック"
+#~ msgid "Health Check"
+#~ msgstr "可用性チェック"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "利用可能"
@@ -3875,23 +3956,23 @@ msgstr "ホップ"
msgid "Hop node"
msgstr "ホップノード"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "ホスト"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "ホストの非同期失敗"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "ホストの非同期 OK"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "ホスト設定キー"
@@ -3899,61 +3980,61 @@ msgstr "ホスト設定キー"
msgid "Host Count"
msgstr "ホスト数"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "ホストの詳細"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "ホストの失敗"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "ホストの障害"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "ホストフィルター"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "ホスト名"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "ホスト OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "ホストのポーリング"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "ホストの再試行"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "ホストがスキップされました"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "ホストの開始"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "ホストに到達できません"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "ホストの詳細"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "ホストの詳細モーダル"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "ホストが見つかりませんでした。"
@@ -3963,20 +4044,20 @@ msgid "Host status information for this job is unavailable."
msgstr "このジョブのホストのステータス情報は利用できません。"
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4001,7 +4082,7 @@ msgstr "インポートされたホスト"
msgid "Hosts remaining"
msgstr "残りのホスト"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "時間"
@@ -4018,25 +4099,25 @@ msgstr "ハイブリッド"
msgid "Hybrid node"
msgstr "ハイブリッドノード"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "ダッシュボード ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "パネル ID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "ダッシュボード ID (オプション)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "パネル ID (オプション)"
@@ -4045,49 +4126,49 @@ msgstr "パネル ID (オプション)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC ニック"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "IRC サーバーアドレス"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "IRC サーバーポート"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC ニック"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "IRC サーバーアドレス"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "IRC サーバーパスワード"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "IRC サーバーポート"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "アイコン URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4099,12 +4180,16 @@ msgid ""
msgstr "チェックを付けると、以前は外部ソースにあり、現在は削除されているホストおよびグループがインベントリーから削除されます。インベントリーソースで管理されていなかったホストおよびグループは、次に手動で作成したグループにプロモートされます。プロモート先となる、手動で作成したグループがない場合、ホストおよびグループは、インベントリーの \"すべて\" のデフォルトグループに残ります。"
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "有効な場合は、この Playbook を管理者として実行します。"
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr "有効な場合は、この Playbook を管理者として実行します。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4112,34 +4197,46 @@ msgid ""
msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "有効な場合は、このジョブテンプレートの同時実行が許可されます。"
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr "有効な場合は、このジョブテンプレートの同時実行が許可されます。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "有効な場合は、このワークフロージョブテンプレートの同時実行が許可されます。"
#: screens/Template/shared/JobTemplateForm.js:611
-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 "有効にすると、収集されたファクトが保存されるため、ホストレベルで表示できます。ファクトは永続化され、実行時にファクトキャッシュに挿入されます。"
+#~ 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 "有効にすると、収集されたファクトが保存されるため、ホストレベルで表示できます。ファクトは永続化され、実行時にファクトキャッシュに挿入されます。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "指定した場合に、ワークフローを表示すると、リソース名の代わりにこのフィールドがノードに表示されます"
@@ -4157,26 +4254,26 @@ msgstr "サブスクリプションをお持ちでない場合は、Red Hat に
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "この特定のユーザーのアクセスのみを削除する場合は、チームから削除してください。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "イメージ"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "組み込みファイル"
@@ -4195,17 +4292,17 @@ msgstr "情報"
msgid "Initiated By"
msgstr "開始:"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "開始:"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "開始者 (ユーザー名)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "インジェクターの設定"
@@ -4215,18 +4312,22 @@ msgstr "インジェクターの設定"
msgid "Input configuration"
msgstr "入力の設定"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Insights 認証情報"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Insights for Ansible Automation Platform ダッシュボード"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Insights for Ansible Automation Platform ダッシュボード"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4236,27 +4337,27 @@ msgstr "Insights システム ID"
msgid "Instance"
msgstr "インスタンス"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "インスタンスフィルター"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "インスタンスグループ"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "インスタンスグループ"
@@ -4264,7 +4365,7 @@ msgstr "インスタンスグループ"
msgid "Instance ID"
msgstr "インスタンス ID"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "インスタンスの詳細"
@@ -4273,7 +4374,7 @@ msgstr "インスタンスの詳細"
msgid "Instance group"
msgstr "インスタンスグループ"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "インスタンスグループが見つかりません。"
@@ -4282,21 +4383,21 @@ msgstr "インスタンスグループが見つかりません。"
msgid "Instance group used capacity"
msgstr "インスタンスグループの使用容量"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "インスタンスグループ"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "インスタンス"
@@ -4320,15 +4421,15 @@ msgstr "無効なリンクターゲットです。子ノードまたは祖先ノ
msgid "Invalid time format"
msgstr "無効な時間形式"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "無効なユーザー名またはパスワードです。やり直してください。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4344,36 +4445,38 @@ msgstr "ソースを含むインベントリーはコピーできません。"
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "インベントリー"
@@ -4381,7 +4484,7 @@ msgstr "インベントリー"
msgid "Inventory (Name)"
msgstr "インベントリー (名前)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "インベントリーファイル"
@@ -4389,35 +4492,35 @@ msgstr "インベントリーファイル"
msgid "Inventory ID"
msgstr "インベントリー ID"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "インベントリーソース"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "インベントリーソースのプロジェクト"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "インベントリーソース同期"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "インベントリーソース同期エラー"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "インベントリーソース"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "インベントリー同期"
@@ -4433,12 +4536,12 @@ msgstr "インベントリー更新"
msgid "Inventory copied successfully"
msgstr "インベントリーが正常にコピーされました"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "インベントリーファイル"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "インベントリーが見つかりません。"
@@ -4450,23 +4553,23 @@ msgstr "インベントリーの同期"
msgid "Inventory sync failures"
msgstr "インベントリーの同期の失敗"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "展開"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "展開なし"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "項目の失敗"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "項目 OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "項目のスキップ"
@@ -4480,49 +4583,50 @@ msgid "Items per page"
msgstr "ページ別の項目"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "ジョブ ID:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "JSON タブ"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "1 月"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "Job"
+#~ msgid "Job"
+#~ msgstr "Job"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "ジョブキャンセルエラー"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "ジョブ削除エラー"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "ジョブ ID:"
@@ -4531,33 +4635,33 @@ msgid "Job Runs"
msgstr "ジョブの実行"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "ジョブスライス"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "ジョブスライスの親"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "ジョブスライス"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "ジョブステータス"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "ジョブタグ"
@@ -4566,9 +4670,9 @@ msgstr "ジョブタグ"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "ジョブテンプレート"
@@ -4576,13 +4680,13 @@ msgstr "ジョブテンプレート"
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 "ジョブテンプレートのデフォルトの認証情報は、同じタイプの認証情報に置き換える必要があります。続行するには、次のタイプの認証情報を選択してください: {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4597,15 +4701,15 @@ msgstr "ノードの作成時または編集時に、インベントリーまた
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "ノードの作成時または編集時に、パスワードの入力を求める認証情報を持つジョブテンプレートを選択できない"
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "ジョブタイプ"
@@ -4617,35 +4721,35 @@ msgstr "ジョブステータス"
msgid "Job status graph tab"
msgstr "ジョブステータスのグラフタブ"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "ジョブテンプレート"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "ジョブ"
@@ -4653,27 +4757,27 @@ msgstr "ジョブ"
msgid "Jobs settings"
msgstr "ジョブ設定"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "7 月"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "6 月"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "キー"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "キー選択"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "キー先行入力"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "キーワード"
@@ -4730,44 +4834,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "ラベル"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "ラベル名"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "ラベル"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "最終"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "最終可用性チェック"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "最終ジョブステータス"
@@ -4775,36 +4880,36 @@ msgstr "最終ジョブステータス"
msgid "Last Login"
msgstr "前回のログイン"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "最終更新日"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4813,12 +4918,12 @@ msgstr "最終更新日"
msgid "Last Name"
msgstr "姓"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "最終実行日時"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "最終実行日時"
@@ -4826,19 +4931,19 @@ msgstr "最終実行日時"
msgid "Last job"
msgstr "最後のジョブ"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "最終更新日"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "姓"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "最終使用日時"
@@ -4846,18 +4951,18 @@ msgstr "最終使用日時"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "起動"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "管理ジョブの起動"
+#~ msgid "Launch Management Job"
+#~ msgstr "管理ジョブの起動"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "テンプレートの起動"
@@ -4870,7 +4975,7 @@ msgstr "テンプレートの起動"
msgid "Launch management job"
msgstr "管理ジョブの起動"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "テンプレートの起動"
@@ -4887,15 +4992,19 @@ msgstr "起動 | {0}"
msgid "Launched By"
msgstr "起動者"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "起動者 (ユーザー名)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform の詳細"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform の詳細"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "実行環境をシステム全体で利用できるようにするには、このフィールドを空白のままにします。"
@@ -4914,19 +5023,20 @@ msgstr "Less than の比較条件"
msgid "Less than or equal to comparison."
msgstr "Less than or equal to の比較条件"
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "制限"
@@ -4942,15 +5052,15 @@ msgstr "ロード中"
msgid "Local"
msgstr "ローカル"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "ローカルタイムゾーン"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "ローカルタイムゾーン"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "ログイン"
@@ -4969,7 +5079,7 @@ msgid "Logout"
msgstr "ログアウト"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "ルックアップモーダル"
@@ -4985,9 +5095,9 @@ msgstr "ルックアップタイプ"
msgid "Lookup typeahead"
msgstr "ルックアップの先行入力"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "直近の同期"
@@ -4995,11 +5105,11 @@ msgstr "直近の同期"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "マシンの認証情報"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "管理"
@@ -5008,13 +5118,13 @@ msgstr "管理"
msgid "Managed nodes"
msgstr "管理ノード"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "管理ジョブ"
@@ -5023,7 +5133,7 @@ msgstr "管理ジョブ"
msgid "Management Jobs"
msgstr "管理ジョブ"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "管理ジョブ"
@@ -5032,11 +5142,11 @@ msgstr "管理ジョブ"
msgid "Management job launch error"
msgstr "管理ジョブの起動エラー"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "管理ジョブが見つかりません。"
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "管理ジョブ"
@@ -5044,18 +5154,19 @@ msgstr "管理ジョブ"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "手動"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "3 月"
@@ -5064,20 +5175,20 @@ msgstr "3 月"
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "最大ホスト数"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "最大"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "最大長"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "5 月"
@@ -5102,27 +5213,29 @@ msgstr "メトリクス"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "最小"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "最小長"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンス数"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
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.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "分"
@@ -5143,23 +5256,23 @@ msgid "Miscellaneous System settings"
msgstr "その他のシステム設定"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "不明"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "不足しているリソース"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "修正済み"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5170,7 +5283,7 @@ msgstr "修正済み"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5179,7 +5292,7 @@ msgstr "修正済み"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5207,33 +5320,33 @@ msgstr "変更者 (ユーザー名)"
msgid "Modified by (username)"
msgstr "変更者 (ユーザー名)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "モジュール"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "モジュール引数"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "モジュール名"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "月"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "月曜"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "月"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "詳細情報"
@@ -5241,13 +5354,13 @@ msgstr "詳細情報"
msgid "More information for"
msgstr "詳細情報: "
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "複数選択"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "複数選択"
@@ -5259,7 +5372,7 @@ msgstr "多項選択法 (複数の選択可)"
msgid "Multiple Choice (single select)"
msgstr "多項選択法 (単一の選択可)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "多項選択法オプション"
@@ -5267,13 +5380,13 @@ msgstr "多項選択法オプション"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5305,15 +5418,15 @@ msgstr "多項選択法オプション"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5329,18 +5442,18 @@ msgstr "多項選択法オプション"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5350,14 +5463,14 @@ msgstr "多項選択法オプション"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5372,8 +5485,8 @@ msgstr "多項選択法オプション"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5403,15 +5516,15 @@ msgstr "多項選択法オプション"
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5434,40 +5547,40 @@ msgstr "多項選択法オプション"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5475,10 +5588,10 @@ msgstr "多項選択法オプション"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "名前"
@@ -5486,9 +5599,9 @@ msgstr "名前"
msgid "Navigation"
msgstr "ナビゲーション"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "なし"
@@ -5496,22 +5609,21 @@ msgstr "なし"
msgid "Never Updated"
msgstr "未更新"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "期限切れなし"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "新規"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5520,27 +5632,27 @@ msgstr "新規"
msgid "Next"
msgstr "次へ"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "次回実行日時"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "不可"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "一致するホストがありません"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "残りのホストがありません"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "JSON は利用できません"
@@ -5549,12 +5661,12 @@ msgid "No Jobs"
msgstr "ジョブはありません"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "標準エラーは利用できません"
+#~ msgid "No Standard Error Available"
+#~ msgstr "標準エラーは利用できません"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "標準出力は利用できません"
+#~ msgid "No Standard Out Available"
+#~ msgstr "標準出力は利用できません"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5564,7 +5676,7 @@ msgstr "インベントリー同期の失敗はありません。"
msgid "No items found."
msgstr "項目は見つかりません。"
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "利用可能なジョブデータがありません。"
@@ -5572,7 +5684,7 @@ msgstr "利用可能なジョブデータがありません。"
msgid "No output found for this job."
msgstr "このジョブの出力は見つかりません"
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "結果が見つかりません"
@@ -5581,20 +5693,20 @@ msgstr "結果が見つかりません"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "結果が見つかりません"
@@ -5612,22 +5724,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "{pluralizedItemName} は見つかりません"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "ノードのエイリアス"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "ノードタイプ"
@@ -5643,11 +5755,11 @@ msgstr "ノードタイプ"
msgid "None"
msgstr "なし"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "なし (1回実行)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "なし (1回実行)"
@@ -5670,7 +5782,7 @@ msgstr "設定されていません"
msgid "Not configured for inventory sync."
msgstr "インベントリーの同期に設定されていません。"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5694,11 +5806,11 @@ msgstr "注: 選択された順序によって、実行の優先順位が設定
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "注: 資格情報の順序は、コンテンツの同期と検索の優先順位を設定します。ドラッグを有効にするには、1 つ以上選択してください。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "注: このフィールドは、リモート名が \"origin\" であることが前提です。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5708,7 +5820,7 @@ msgid ""
"password information."
msgstr "GitHub または Bitbucket の SSH プロトコルを使用している場合は、SSH キーのみを入力し、ユーザー名 (git 以外) を入力しないでください。また、GitHub および Bitbucket は、SSH の使用時のパスワード認証をサポートしません。GIT の読み取り専用プロトコル (git://) はユーザー名またはパスワード情報を使用しません。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "通知の色"
@@ -5717,11 +5829,11 @@ msgstr "通知の色"
msgid "Notification Template not found."
msgstr "通知テンプレートテストは見つかりません。"
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "通知テンプレート"
@@ -5730,7 +5842,7 @@ msgstr "通知テンプレート"
msgid "Notification Type"
msgstr "通知タイプ"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "通知の色"
@@ -5738,7 +5850,7 @@ msgstr "通知の色"
msgid "Notification sent successfully"
msgstr "通知が正常に送信されました"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "通知テストに失敗しました。"
@@ -5753,25 +5865,25 @@ msgstr "通知タイプ"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "通知"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "11 月"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5779,69 +5891,75 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "実行回数"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "10 月"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "オフ"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "オン"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "障害発生時"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "成功時"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "指定日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "曜日"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "グループ化のみ"
@@ -5849,26 +5967,31 @@ msgstr "グループ化のみ"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "オプションの詳細"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
msgstr "「dev」、「test」などのこのインベントリーを説明するオプションラベルです。ラベルを使用し、インベントリーおよび完了したジョブの分類およびフィルターを実行できます。"
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "「dev」、「test」などのこのジョブテンプレートを説明するオプションラベルです。ラベルを使用し、ジョブテンプレートおよび完了したジョブの分類およびフィルターを実行できます。"
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "必要に応じて、ステータスの更新を Webhook サービスに送信しなおすのに使用する認証情報を選択します。"
@@ -5876,15 +5999,15 @@ msgstr "必要に応じて、ステータスの更新を Webhook サービスに
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "オプション"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "順序"
@@ -5892,19 +6015,20 @@ msgstr "順序"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5912,19 +6036,19 @@ msgstr "順序"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5939,19 +6063,19 @@ msgstr "組織 (名前)"
msgid "Organization Name"
msgstr "組織名"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "組織が見つかりません。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5966,34 +6090,39 @@ msgstr "他のプロンプト"
msgid "Out of compliance"
msgstr "コンプライアンス違反"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "出力"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "上書き"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "リモートインベントリーソースからのローカルグループおよびホストを上書きする"
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "リモートインベントリーソースのローカル変数を上書きする"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "変数の上書き"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "POST"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PUT"
@@ -6002,11 +6131,11 @@ msgstr "PUT"
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Pagerduty サブドメイン"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Pagerduty サブドメイン"
@@ -6030,23 +6159,28 @@ msgstr "パンライト"
msgid "Pan Up"
msgstr "パンアップ"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "追加のコマンドライン変更を渡します。2 つの Ansible コマンドラインパラメーターがあります。"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについてはドキュメントを参照してください。"
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについてはドキュメントを参照してください。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax."
msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6071,8 +6205,8 @@ msgstr "過去 2 週間"
msgid "Past week"
msgstr "過去 1 週間"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "保留中"
@@ -6089,7 +6223,7 @@ msgstr "保留中の削除"
msgid "Perform a search to define a host filter"
msgstr "検索を実行して、ホストフィルターを定義します。"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "パーソナルアクセストークン"
@@ -6098,7 +6232,7 @@ msgstr "パーソナルアクセストークン"
msgid "Personal access token"
msgstr "パーソナルアクセストークン"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "プレイ"
@@ -6106,45 +6240,45 @@ msgstr "プレイ"
msgid "Play Count"
msgstr "再生回数"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "プレイの開始"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Playbook チェック"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Playbook の完了"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Playbook ディレクトリー"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Playbook 実行"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Playbook の開始"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6184,27 +6318,27 @@ msgstr "開始ボタンをクリックして開始してください。"
msgid "Please enter a valid URL"
msgstr "有効な URL を入力してください。"
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "値を入力してください。"
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "ログインしてください"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "ジョブを実行してこのリストに入力してください。"
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "1 から 31 までの日付を選択してください。"
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。"
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "開始日時より後の終了日時を選択してください。"
@@ -6220,13 +6354,13 @@ msgstr "上記のフィルターを使用して別の検索を試してくださ
msgid "Please wait until the topology view is populated..."
msgstr "トポロジービューが反映されるまでお待ちください..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Pod 仕様の上書き"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "ポリシータイプ"
@@ -6236,7 +6370,7 @@ msgstr "ポリシータイプ"
msgid "Policy instance minimum"
msgstr "ポリシーインスタンスの最小値"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "ポリシーインスタンスの割合"
@@ -6255,12 +6389,12 @@ msgid ""
"examples."
msgstr "検索フィルターを使用して、このインベントリーのホストにデータを入力します (例: ansible_facts__ansible_distribution:\"RedHat\")。詳細な構文と例については、ドキュメントを参照してください。構文と例の詳細については、Ansible Tower のドキュメントを参照してください。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "ポート"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "複数の親がある場合にこのノードを実行するための前提条件。参照: "
@@ -6270,10 +6404,18 @@ msgid ""
"choice per line."
msgstr "Enter キーを押して、回答の選択肢をさらに追加します。回答の選択肢は、1 行に 1 つです。"
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Enter キーを押して編集します。編集を終了するには、ESC キーを押します。"
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6283,9 +6425,9 @@ msgstr "プレビュー"
msgid "Private key passphrase"
msgstr "秘密鍵のパスフレーズ"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "権限昇格"
@@ -6293,40 +6435,44 @@ msgstr "権限昇格"
msgid "Privilege escalation password"
msgstr "権限昇格のパスワード"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "プロジェクト"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "プロジェクトのベースパス"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "プロジェクトのステータス"
+#~ msgid "Project Status"
+#~ msgstr "プロジェクトのステータス"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "プロジェクトの同期"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "プロジェクトの同期エラー"
@@ -6334,11 +6480,19 @@ msgstr "プロジェクトの同期エラー"
msgid "Project Update"
msgstr "プロジェクトの更新"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "プロジェクトが正常にコピーされました"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "プロジェクトが見つかりません。"
@@ -6348,12 +6502,12 @@ msgstr "プロジェクトの同期の失敗"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6364,18 +6518,18 @@ msgstr "プロジェクト"
msgid "Promote Child Groups and Hosts"
msgstr "子グループおよびホストのプロモート"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "プロンプト"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "プロンプトオーバーライド"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "起動プロンプト"
@@ -6383,13 +6537,12 @@ msgstr "起動プロンプト"
msgid "Prompt | {0}"
msgstr "プロンプト | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "プロンプト値"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6397,7 +6550,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6405,11 +6558,16 @@ msgid ""
"information and examples on patterns."
msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "このフィールドに値を入力するか、起動プロンプトを表示するオプションを選択します。"
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6424,32 +6582,40 @@ msgid ""
msgstr "以下に Red Hat または Red Hat Satellite の認証情報を指定して、利用可能なライセンス一覧から選択してください。使用する認証情報は、更新または延長サブスクリプションの取得で将来使用するために保存されます。"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Red Hat または Red Hat Satellite の認証情報を提供して、Insights for Ansible Automation Platform を有効にします。"
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Red Hat または Red Hat Satellite の認証情報を提供して、Insights for Ansible Automation Platform を有効にします。"
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "プロビジョニングコールバック URL"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "プロビジョニングコールバックの詳細"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "プロビジョニングコールバック"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "プル"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "質問"
@@ -6461,14 +6627,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "RADIUS 設定"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "メモリー {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "読み込み"
@@ -6488,9 +6654,9 @@ msgstr "最近のテンプレート"
msgid "Recent Templates list tab"
msgstr "最近のテンプレートリストタブ"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "最近のジョブ"
@@ -6509,6 +6675,7 @@ msgstr "Red Hat Ansible Automation Platform"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6530,13 +6697,14 @@ msgstr "Red Hat サブスクリプションマニュフェスト"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "リダイレクト URI"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "リダイレクト URI"
+#~ msgid "Redirect uris"
+#~ msgstr "リダイレクト URI"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6546,15 +6714,20 @@ msgstr "ダッシュボードへのリダイレクト"
msgid "Redirecting to subscription detail"
msgstr "サブスクリプションの詳細へのリダイレクト"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "参照:"
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "設定ファイルの詳細は、Ansible ドキュメントを参照してください。"
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr "設定ファイルの詳細は、Ansible ドキュメントを参照してください。"
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6572,25 +6745,26 @@ msgstr "リビジョンの更新"
msgid "Refresh project revision"
msgstr "プロジェクトリビジョンの更新"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "リージョン"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "レジストリーの認証情報"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "関連するグループ"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "関連するキー"
@@ -6605,8 +6779,8 @@ msgstr "関連する検索タイプの先行入力"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "再起動"
@@ -6637,12 +6811,13 @@ msgstr "ホストパラメーターを使用した再起動"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "リモートアーカイブ"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6661,11 +6836,11 @@ msgstr "リンクの削除"
msgid "Remove Node {nodeName}"
msgstr "ノード {nodeName} の削除"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "更新の実行前にローカルの変更を削除します。"
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "Ansible ファクトに関連する現在の検索を削除して、このキーを使用して別の検索ができるようにします。"
@@ -6681,15 +6856,19 @@ msgstr "{0} チップの削除"
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.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "繰り返しの頻度"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "置換"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "フィールドを新しい値に置き換え"
@@ -6699,7 +6878,7 @@ msgid "Request subscription"
msgstr "サブスクリプションの要求"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "必須"
@@ -6709,7 +6888,7 @@ msgid "Reset zoom"
msgstr "ズームのリセット"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6720,7 +6899,7 @@ msgid "Resource deleted"
msgstr "リソースが削除されました"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "リソース"
@@ -6732,18 +6911,18 @@ msgstr "リソースがこのテンプレートにありません。"
msgid "Restore initial value."
msgstr "初期値を復元します。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "ホスト変数の指定された辞書から有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます (例: 「foo.bar」)。"
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "戻る"
@@ -6763,7 +6942,7 @@ msgstr "このフィルターおよび他のフィルターに該当する結果
msgid "Returns results that satisfy this one or any other filters."
msgstr "この 1 つまたは他のフィルターに該当する結果を返します。"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6778,7 +6957,7 @@ msgstr "すべて元に戻す"
msgid "Revert all to default"
msgstr "すべてをデフォルトに戻す"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "フィールドを以前保存した値に戻す"
@@ -6790,13 +6969,13 @@ msgstr "設定を元に戻す"
msgid "Revert to factory default."
msgstr "工場出荷時のデフォルトに戻します。"
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "リビジョン"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "リビジョン #"
@@ -6816,56 +6995,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "ロール"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "ロール"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "実行"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "コマンドの実行"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "インスタンスでの可用性チェック実行"
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "アドホックコマンドの実行"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "コマンドの実行"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "実行する間隔"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "実行頻度"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "実行:"
@@ -6873,25 +7059,30 @@ msgstr "実行:"
msgid "Run type"
msgstr "実行タイプ"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "実行中"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "実行中のハンドラー"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "実行中のジョブ"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "実行中のジョブ"
@@ -6917,7 +7108,7 @@ msgstr "ソーシャル"
msgid "SSH password"
msgstr "SSH パスワード"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "SSL 接続"
@@ -6927,36 +7118,36 @@ msgid "START"
msgstr "開始"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "ステータス:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "土"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "土曜"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6982,12 +7173,16 @@ msgstr "正常に保存が実行されました!"
msgid "Schedule"
msgstr "スケジュール"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "スケジュールの詳細"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "スケジュールの詳細"
@@ -6999,7 +7194,7 @@ msgstr "スケジュールはアクティブです"
msgid "Schedule is inactive"
msgstr "スケジュールは非アクティブです"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "スケジュールにルールがありません"
@@ -7010,30 +7205,34 @@ msgstr "スケジュールが見つかりません。"
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "スケジュール"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "範囲"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "最初にスクロール"
@@ -7051,7 +7250,7 @@ msgid "Scroll previous"
msgstr "前にスクロール"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "検索"
@@ -7059,12 +7258,12 @@ msgstr "検索"
msgid "Search is disabled while the job is running"
msgstr "ジョブの実行中は検索が無効になっています"
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "検索送信ボタン"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "テキスト入力の検索"
@@ -7072,24 +7271,24 @@ msgstr "テキスト入力の検索"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "ansible_facts による検索には特別な構文が必要です。詳細は、以下を参照してください。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "第 2"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "秒"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "左側のエラーを参照してください"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7105,7 +7304,7 @@ msgstr "認証情報タイプの選択"
msgid "Select Groups"
msgstr "グループの選択"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "ホストの選択"
@@ -7113,7 +7312,7 @@ msgstr "ホストの選択"
msgid "Select Input"
msgstr "入力の選択"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "インスタンスの選択"
@@ -7121,7 +7320,7 @@ msgstr "インスタンスの選択"
msgid "Select Items"
msgstr "アイテムの選択"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "リストからアイテムの選択"
@@ -7129,7 +7328,7 @@ msgstr "リストからアイテムの選択"
msgid "Select Labels"
msgstr "ラベルの選択"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "適用するロールの選択"
@@ -7141,25 +7340,27 @@ msgstr "チームの選択"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "JSON 形式のサービスアカウントキーを選択して、次のフィールドに自動入力します。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "ノードタイプの選択"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "リソースタイプの選択"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "ジョブテンプレートにブランチを選択してください。このブランチは、ブランチを求めるすべてのジョブテンプレートノードに適用されます。"
+#~ 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.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js: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.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。"
@@ -7175,16 +7376,16 @@ msgstr "取り消すジョブの選択"
msgid "Select a metric"
msgstr "メトリクスの選択"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "モジュールの選択"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Playbook の選択"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "実行環境を編集する前にプロジェクトを選択してください。"
@@ -7193,8 +7394,8 @@ msgid "Select a question to delete"
msgstr "削除する質問を選択してください"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "承認する行の選択"
+#~ msgid "Select a row to approve"
+#~ msgstr "承認する行の選択"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7202,10 +7403,10 @@ msgid "Select a row to delete"
msgstr "削除する行の選択"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "拒否する行の選択"
+#~ msgid "Select a row to deny"
+#~ msgstr "拒否する行の選択"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "関連付けを解除する行の選択"
@@ -7214,49 +7415,51 @@ msgid "Select a subscription"
msgstr "サブスクリプションの選択"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "このフィールドの値の選択"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Webhook サービスを選択します。"
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "すべて選択"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "アクティビティータイプの選択"
@@ -7272,7 +7475,7 @@ msgstr "グラフを表示するインスタンスとメトリクスを選択し
msgid "Select an instance to run a health check."
msgstr "可用性チェックを実行するインスタンスを選択します。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "ワークフローのインベントリーを選択してください。このインベントリーが、インベントリーをプロンプトするすべてのワークフローノードに適用されます。"
@@ -7280,30 +7483,39 @@ msgstr "ワークフローのインベントリーを選択してください。
msgid "Select an option"
msgstr "オプションを選択してください"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "デフォルトの実行環境を編集する前に、組織を選択してください。"
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "このジョブが実行されるノードへのアクセスを許可する認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシンの認証情報 (SSH) については、認証情報を選択せずに「起動プロンプト」を選択すると、実行時にマシン認証情報を選択する必要があります。認証情報を選択し、「起動プロンプト」にチェックを付けている場合は、選択した認証情報が実行時に更新できるデフォルトになります。"
+#~ msgid ""
+#~ "Select credentials for accessing 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 "このジョブが実行されるノードへのアクセスを許可する認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシンの認証情報 (SSH) については、認証情報を選択せずに「起動プロンプト」を選択すると、実行時にマシン認証情報を選択する必要があります。認証情報を選択し、「起動プロンプト」にチェックを付けている場合は、選択した認証情報が実行時に更新できるデフォルトになります。"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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 "プロジェクトのベースパスにあるデイレクトリーの一覧から選択します。ベースパスと Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "リストから項目の選択"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7319,13 +7531,13 @@ msgstr "オプションを選択してください"
msgid "Select period"
msgstr "期間の選択"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "適用するロールの選択"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "ソースパスの選択"
@@ -7347,75 +7559,90 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "このインベントリーを実行するインスタンスグループを選択します。"
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "このジョブテンプレートを実行するインスタンスグループを選択します。"
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr "このジョブテンプレートを実行するインスタンスグループを選択します。"
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "この組織を実行するインスタンスグループを選択します。"
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "このトークンが属するアプリケーションを選択するか、このフィールドを空のままにしてパーソナルアクセストークンを作成します。"
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "このトークンが属するアプリケーションを選択するか、このフィールドを空のままにしてパーソナルアクセストークンを作成します。"
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "そのコマンドを実行するためにリモートホストへのアクセス時に使用する認証情報を選択します。Ansible がリモートホストにログインするために必要なユーザー名および SSH キーまたはパスワードが含まれる認証情報を選択してください。"
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "このジョブテンプレートの実行環境を選択します。"
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
msgstr "このジョブで管理するホストが含まれるインベントリーを選択してください。"
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "このソースで同期されるインベントリーファイルを選択します。ドロップダウンから選択するか、入力にファイルを指定できます。"
+#~ 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.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "このホストが属するインベントリーを選択します。"
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "このジョブで実行される Playbook を選択してください。"
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。"
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。"
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "使用する Ansible Automation Platform サブスクリプションを選択します。"
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "{0} の選択"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7437,7 +7664,7 @@ msgstr "{0} の選択"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "選択済み"
@@ -7448,20 +7675,20 @@ msgstr "選択済み"
msgid "Selected Category"
msgstr "選択したカテゴリー"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "選択した日付範囲には、少なくとも 1 つのスケジュールオカレンスが必要です。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "送信者のメール"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "送信者のメール"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "9 月"
@@ -7470,7 +7697,7 @@ msgid "Service account JSON file"
msgstr "サービスアカウント JSON ファイル"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "このフィールドに値を設定します"
@@ -7482,7 +7709,7 @@ msgstr "データの保持日数を設定します。"
msgid "Set preferences for data collection, logos, and logins"
msgstr "データ収集、ロゴ、およびログイン情報の設定"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "ソースパスの設定:"
@@ -7490,7 +7717,7 @@ msgstr "ソースパスの設定:"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "インスタンスを有効または無効に設定します。無効にした場合には、ジョブはこのインスタンスに割り当てられません。"
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "クライアントデバイスのセキュリティーレベルに応じて「公開」または「機密」に設定します。"
@@ -7498,7 +7725,7 @@ msgstr "クライアントデバイスのセキュリティーレベルに応じ
msgid "Set type"
msgstr "タイプの設定"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "関連する検索フィールドのあいまい検索でタイプを無効に設定"
@@ -7528,8 +7755,8 @@ msgstr "名前の設定"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "設定"
@@ -7538,17 +7765,17 @@ msgstr "設定"
msgid "Show"
msgstr "表示"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "変更の表示"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "変更の表示"
@@ -7565,72 +7792,72 @@ msgstr "簡易表示"
msgid "Show only root groups"
msgstr "root グループのみを表示"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Azure AD でサインイン"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "GitHub でサインイン"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "GitHub Enterprise でサインイン"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "GitHub Enterprise 組織でサインイン"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "GitHub Enterprise チームでサインイン"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "GitHub 組織でサインイン"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "GitHub チームでサインイン"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Google でサインイン"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "SAML でサインイン"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "SAML {samlIDP} でサインイン"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "簡易キー選択"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "スキップタグ"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。"
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7638,11 +7865,16 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "スキップ済"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "スキップ済'"
@@ -7664,15 +7896,15 @@ msgid "Smart Inventory not found."
msgstr "スマートインベントリーは見つかりません。"
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "スマートホストフィルター"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "スマートインベントリー"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "前のステップのいくつかにエラーがあります"
@@ -7694,51 +7926,53 @@ msgid "Sort"
msgstr "並び替え"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "ソース"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "ソースコントロールブランチ"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "ソースコントロールブランチ/タグ/コミット"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "ソースコントロール認証情報"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "ソースコントロールの Refspec"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "ソースコントロールの改訂"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "ソースコントロールのタイプ"
@@ -7746,34 +7980,34 @@ msgstr "ソースコントロールのタイプ"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "ソースコントロールの URL"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "ソースコントロールの更新"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "発信元の電話番号"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "ソース変数"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "ソースワークフローのジョブ"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "ソースコントロールのブランチ"
@@ -7781,12 +8015,12 @@ msgstr "ソースコントロールのブランチ"
msgid "Source details"
msgstr "ソース詳細"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "発信元の電話番号"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "ソース変数"
@@ -7794,46 +8028,46 @@ msgstr "ソース変数"
msgid "Sourced from a project"
msgstr "プロジェクトから取得"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "ソース"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr "JSON 形式で HTTP ヘッダーを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr "通知の色を指定します。使用できる色は、16 進数の色コード (例: #3af または #789abc) です。"
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "トークンのアクセスのスコープを指定"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "トークンのアクセスのスコープを指定"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "このノードを実行する条件を指定"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "標準エラー"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "標準出力"
+#~ msgid "Standard Out"
+#~ msgstr "標準出力"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "標準エラータブ"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "標準出力タブ"
+#~ msgid "Standard out tab"
+#~ msgstr "標準出力タブ"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7842,7 +8076,7 @@ msgstr "標準出力タブ"
msgid "Start"
msgstr "開始"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "開始時間"
@@ -7851,16 +8085,16 @@ msgstr "開始時間"
msgid "Start date"
msgstr "開始日"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "開始日時"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "開始メッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "開始メッセージのボディー"
@@ -7877,27 +8111,27 @@ msgstr "同期ソースの開始"
msgid "Start time"
msgstr "開始時間"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "開始"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -7905,9 +8139,9 @@ msgstr "開始"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "ステータス"
@@ -7925,7 +8159,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "送信"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7973,6 +8207,7 @@ msgstr "サブスクリプションテーブル"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -7980,22 +8215,22 @@ msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "成功"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "成功メッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "成功メッセージボディー"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8005,24 +8240,24 @@ msgstr "成功"
msgid "Successful jobs"
msgstr "成功ジョブ"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "クリップボードへのコピーに成功しました!"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "日曜"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "Survey"
@@ -8034,7 +8269,7 @@ msgstr "Survey の無効化"
msgid "Survey Enabled"
msgstr "Survey の有効化"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "Survey 質問の順序"
@@ -8042,20 +8277,20 @@ msgstr "Survey 質問の順序"
msgid "Survey Toggle"
msgstr "Survey の切り替え"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "Survey プレビューモーダル"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "同期"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "プロジェクトの同期"
@@ -8069,11 +8304,11 @@ msgstr "すべてを同期"
msgid "Sync all sources"
msgstr "すべてのソースの同期"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "同期エラー"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "リビジョンの同期"
@@ -8101,7 +8336,7 @@ msgstr "システム管理者"
msgid "System Auditor"
msgstr "システム監査者"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "システム警告"
@@ -8119,20 +8354,20 @@ msgid "TACACS+ settings"
msgstr "TACACS+ 設定"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "タブ"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。"
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8140,24 +8375,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "アノテーションのタグ"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "アノテーションのタグ (オプション)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "ターゲット URL"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "タスク"
@@ -8165,7 +8405,7 @@ msgstr "タスク"
msgid "Task Count"
msgstr "タスク数"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "タスクの開始"
@@ -8182,24 +8422,24 @@ msgstr "チーム"
msgid "Team Roles"
msgstr "チームロール"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "チームが見つかりません。"
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8207,27 +8447,27 @@ msgstr "チームが見つかりません。"
msgid "Teams"
msgstr "チーム"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "テンプレート"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "テンプレートが正常にコピーされました"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "テンプレートが見つかりません。"
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8236,7 +8476,7 @@ msgstr "テンプレート"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "テスト"
@@ -8257,11 +8497,11 @@ msgid "Test passed"
msgstr "テストに成功"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "テキスト"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "テキストエリア"
@@ -8269,19 +8509,23 @@ msgstr "テキストエリア"
msgid "Textarea"
msgstr "Textarea"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "値が見つかりませんでした。有効な値を入力または選択してください。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "その"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "ユーザーがこのアプリケーションのトークンを取得するために使用する必要のある付与タイプです。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8289,46 +8533,91 @@ msgid ""
msgstr "メール通知が、ホストへの到達を試行するのをやめてタイムアウトするまでの時間 (秒単位)。範囲は 1 から 120 秒です。"
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "ジョブが取り消される前の実行時間 (秒数)。デフォルト値は 0 で、ジョブのタイムアウトがありません。"
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr "ジョブが取り消される前の実行時間 (秒数)。デフォルト値は 0 で、ジョブのタイムアウトがありません。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。"
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "この組織内のジョブに使用される実行環境。これは、実行環境がプロジェクト、ジョブテンプレート、またはワークフローレベルで明示的に割り当てられていない場合にフォールバックとして使用されます。"
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "このプロジェクトを使用するジョブで使用される実行環境。これは、実行環境がジョブテンプレートまたはワークフローレベルで明示的に割り当てられていない場合のフォールバックとして使用されます。"
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "このジョブテンプレートを起動するときに使用される実行環境。\n"
-"解決された実行環境は、このジョブテンプレートに別の環境を明示的に割り当てることで上書きできます。"
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+#~ "このジョブテンプレートを起動するときに使用される実行環境。\n"
+#~ "解決された実行環境は、このジョブテンプレートに別の環境を明示的に割り当てることで上書きできます。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "最初は全参照を取得します。2 番目は Github のプル要求の 62 番を取得します。この例では、ブランチは \"pull/62/head\" である必要があります。"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "コンテナーレジストリー、イメージ名、およびバージョンタグを含む完全なイメージの場所。"
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8336,25 +8625,36 @@ msgid ""
"documentation for more details."
msgstr "この組織で管理可能な最大ホスト数。デフォルト値は 0 で、管理可能な数に制限がありません。詳細は、Ansible ドキュメントを参照してください。"
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "Playbook の実行中に使用する並列または同時プロセスの数。値が空白または 1 未満の場合は、Ansible のデフォルト値 (通常は 5) を使用します。フォークのデフォルトの数は、以下を変更して上書きできます。"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 "Playbook の実行中に使用する並列または同時プロセスの数。値が空白または 1 未満の場合は、Ansible のデフォルト値 (通常は 5) を使用します。フォークのデフォルトの数は、以下を変更して上書きできます。"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "Playbook の実行中に使用する並列または同時プロセスの数。いずれの値も入力しないと、Ansible 設定ファイルのデフォルト値が使用されます。より多くの情報を確認できます。"
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "要求したページが見つかりませんでした。"
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "インベントリー内のホストをターゲットにするために使用されるパターン。フィールドを空白のままにすると、all、および * はすべて、インベントリー内のすべてのホストを対象とします。Ansible のホストパターンに関する詳細情報を確認できます。"
@@ -8362,7 +8662,7 @@ msgstr "インベントリー内のホストをターゲットにするために
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "プロジェクトは現在同期中であり、同期が完了するとリビジョンが利用可能になります。"
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "リビジョンが利用可能になる前に、プロジェクトを同期する必要があります。"
@@ -8380,7 +8680,7 @@ msgstr "このノードに関連付けられているリソースは削除され
msgid "The search filter did not produce any results…"
msgstr "検索フィルターで結果が生成されませんでした…"
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8401,7 +8701,7 @@ msgstr "{project_base_dir} に利用可能な Playbook ディレクトリーは
msgid "There must be a value in at least one input"
msgstr "少なくとも 1 つの入力に値が必要です"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "ログインに問題がありました。もう一度やり直してください。"
@@ -8413,31 +8713,36 @@ msgstr "このコンテンツの読み込み中にエラーが発生しました
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "ファイルの解析中にエラーが発生しました。ファイルのフォーマットを確認して、再試行してください。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "ワークフローの保存中にエラーが発生しました。"
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "これらは {brandName} がコマンドの実行をサポートするモジュールです。"
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "これらは、サポートされているコマンド実行の標準の詳細レベルです。"
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "これらの引数は、指定されたモジュールで使用されます。"
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "これらの引数は、指定されたモジュールで使用されます。クリックすると {0} の情報を表示できます。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "第 3"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "このプロジェクトは更新する必要があります"
@@ -8459,15 +8764,15 @@ msgstr "このアクションにより、{0} から次のロールの関連付
msgid "This action will disassociate the following:"
msgstr "このアクションにより、以下の関連付けが解除されます。"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "このコンテナーグループは、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "この認証情報は、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "この認証タイプは、現在一部の認証情報で使用されているため、削除できません"
@@ -8475,8 +8780,15 @@ msgstr "この認証タイプは、現在一部の認証情報で使用されて
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "このデータは、ソフトウェアの今後のリリースを強化し、Insights for Ansible Automation Platform を提供するために使用されます。"
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr "このデータは、ソフトウェアの今後のリリースを強化し、Insights for Ansible Automation Platform を提供するために使用されます。"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
@@ -8485,7 +8797,7 @@ msgid ""
"streamline customer experience and success."
msgstr "このデータは、Tower ソフトウェアの今後のリリースを強化し、顧客へのサービスを効率化し、成功に導くサポートをします。"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "この実行環境は、現在他のリソースで使用されています。削除してもよろしいですか?"
@@ -8494,17 +8806,17 @@ msgstr "この実行環境は、現在他のリソースで使用されていま
msgid "This feature is deprecated and will be removed in a future release."
msgstr "この機能は非推奨となり、今後のリリースで削除されます。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "このフィールドには空白を指定できない"
+#~ msgid "This field is must not be blank"
+#~ msgstr "このフィールドには空白を指定できない"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "このフィールドには空白を指定できません。"
+#~ msgid "This field is must not be blank."
+#~ msgstr "このフィールドには空白を指定できません。"
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8535,7 +8847,7 @@ msgstr "このフィールドの値は、{max} より小さい値である必要
msgid "This field must be a regular expression"
msgstr "このフィールドは正規表現である必要があります"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "このフィールドは整数でなければなりません。"
@@ -8548,12 +8860,13 @@ msgstr "このフィールドは、{0} 文字以上にする必要がありま
msgid "This field must be at least {min} characters"
msgstr "このフィールドは、{min} 文字以上にする必要があります"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "このフィールドは 0 より大きくなければなりません"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8561,6 +8874,10 @@ msgstr "このフィールドは 0 より大きくなければなりません"
msgid "This field must not be blank"
msgstr "このフィールドは空白であってはなりません"
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "このフィールドにはスペースを含めることはできません"
@@ -8577,7 +8894,7 @@ msgstr "このフィールドは、{max} 文字内にする必要があります
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "このインスタンスグループは、現在他のリソースで使用されています。削除してもよろしいですか?"
@@ -8585,15 +8902,15 @@ msgstr "このインスタンスグループは、現在他のリソースで使
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "このインベントリーが、このワークフロー ({0}) 内の、インベントリーをプロンプトするすべてのワークフローノードに適用されます。"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "このインベントリーは、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
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.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "クライアントシークレットが表示されるのはこれだけです。"
@@ -8601,19 +8918,19 @@ msgstr "クライアントシークレットが表示されるのはこれだけ
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "この時だけ唯一、トークンの値と、関連する更新トークンの値が表示されます。"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "このジョブテンプレートは、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "この組織は、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "このプロジェクトは、現在他のリソースで使用されています。削除してもよろしいですか?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "このプロジェクトは現在同期中で、同期プロセスが完了するまでクリックできません"
@@ -8633,6 +8950,18 @@ msgstr "このステップにはエラーが含まれています"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8643,27 +8972,27 @@ msgstr "これにより、このページのすべての設定値が出荷時の
msgid "This workflow does not have any nodes configured."
msgstr "このワークフローには、ノードが構成されていません。"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
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.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "木"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "木曜"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "時間"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8673,7 +9002,7 @@ msgid ""
"performed."
msgstr "プロジェクトが最新であることを判別するための時間 (秒単位) です。ジョブ実行およびコールバック時に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合には、最新とは見なされず、新規のプロジェクト更新が実行されます。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8682,24 +9011,24 @@ msgid ""
"inventory sync will be performed."
msgstr "インベントリーの同期が最新の状態であることを判別するために使用される時間 (秒単位) です。ジョブの実行およびコールバック時に、タスクシステムは最新の同期のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合は最新とは見なされず、インベントリーの同期が新たに実行されます。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "タイムアウト"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "タイムアウト"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "タイムアウト (分)"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "タイムアウトの秒"
@@ -8707,11 +9036,11 @@ msgstr "タイムアウトの秒"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "Ansible ファクトを使用してスマートインベントリーを作成するには、スマートインベントリー画面に移動します。"
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "Survey の質問を並べ替えるには、目的の場所にドラッグアンドドロップします。"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "凡例の切り替え"
@@ -8719,12 +9048,12 @@ msgstr "凡例の切り替え"
msgid "Toggle Password"
msgstr "パスワードの切り替え"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "ツールの切り替え"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "ホストの切り替え"
@@ -8763,7 +9092,7 @@ msgstr "スケジュールの切り替え"
msgid "Toggle tools"
msgstr "ツールの切り替え"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "トークン"
@@ -8777,11 +9106,11 @@ msgstr "トークン情報"
msgid "Token not found."
msgstr "ジョブが見つかりません。"
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8792,37 +9121,42 @@ msgid "Tools"
msgstr "ツール"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "トップページネーション"
+#~ msgid "Top Pagination"
+#~ msgstr "トップページネーション"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "トポロジービュー"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "ジョブの合計"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "ノードの合計"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "ジョブの合計"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "サブモジュールを追跡する"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "ブランチでのサブモジュールの最新のコミットを追跡する"
@@ -8832,23 +9166,23 @@ msgid "Trial"
msgstr "トライアル"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "True"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "火"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "火曜"
@@ -8857,13 +9191,13 @@ msgstr "火曜"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -8871,13 +9205,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -8885,15 +9219,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -8909,7 +9243,7 @@ msgstr "タイプ"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "タイプの詳細"
@@ -8927,11 +9261,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "ホストのインベントリーを変更できません。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "利用不可"
@@ -8949,7 +9287,7 @@ msgstr "フォロー解除"
msgid "Unlimited"
msgstr "制限なし"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8971,28 +9309,28 @@ msgstr "認識されない日付の文字列"
msgid "Unsaved changes modal"
msgstr "保存されていない変更モーダル"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "起動時のリビジョン更新"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "起動時の更新"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "プロジェクト更新時の更新"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "オプションの更新"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "ジョブ起動時のリビジョン更新"
@@ -9000,7 +9338,7 @@ msgstr "ジョブ起動時のリビジョン更新"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "{brandName} 内のジョブを含む設定の更新"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Webhook キーの更新"
@@ -9017,12 +9355,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "サブスクリプションを含む Red Hat Subscription Manifest をアップロードします。サブスクリプションマニフェストを生成するには、Red Hat カスタマーポータルの <0>サブスクリプション割り当て0> にアクセスします。"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "SSL の使用"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "TLS の使用"
@@ -9033,21 +9371,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr "カスタムメッセージを使用して、ジョブの開始時、成功時、または失敗時に送信する通知内容を変更します。波括弧を使用してジョブに関する情報にアクセスします:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "使用済み容量"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "使用済み容量"
@@ -9086,34 +9445,39 @@ msgstr "ユーザーアナリティクス"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "ユーザーと Insights のアナリティクス"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "ユーザーと Insights のアナリティクス"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "エラーの詳細"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "ジョブが見つかりません。"
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "ユーザートークン"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9128,11 +9492,11 @@ msgstr "ユーザー名"
msgid "Username / password"
msgstr "ユーザー名 / パスワード"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9144,35 +9508,44 @@ msgstr "ユーザー"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "変数"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "変数のプロモート"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Vault パスワード"
@@ -9181,21 +9554,21 @@ msgstr "Vault パスワード"
msgid "Vault password | {credId}"
msgstr "Vault パスワード | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "詳細"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "詳細"
@@ -9207,8 +9580,8 @@ msgstr "バージョン"
msgid "View Azure AD settings"
msgstr "Azure AD 設定の表示"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "認証情報の詳細の表示"
@@ -9224,15 +9597,15 @@ msgstr "GitHub 設定の表示"
msgid "View Google OAuth 2.0 settings"
msgstr "Google OAuth 2.0 設定の表示"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "ホストの詳細の表示"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "インスタンスの詳細の表示"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9246,11 +9619,11 @@ msgstr "インベントリーグループの表示"
msgid "View Inventory Host Details"
msgstr "インベントリーホストの詳細の表示"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "JSON のサンプルについては、<0>www.json.org0> を参照してください。"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "ジョブの詳細の表示"
@@ -9274,11 +9647,11 @@ msgstr "その他の認証設定の表示"
msgid "View Miscellaneous System settings"
msgstr "その他のシステム設定の表示"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "組織の詳細の表示"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "プロジェクトの詳細の表示"
@@ -9299,8 +9672,8 @@ msgstr "スケジュールの表示"
msgid "View Settings"
msgstr "設定の表示"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "Survey の表示"
@@ -9308,12 +9681,12 @@ msgstr "Survey の表示"
msgid "View TACACS+ settings"
msgstr "TACACS+ 設定の表示"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "チームの詳細の表示"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "テンプレートの詳細の表示"
@@ -9321,7 +9694,7 @@ msgstr "テンプレートの詳細の表示"
msgid "View Tokens"
msgstr "トークンの表示"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "ユーザーの詳細の表示"
@@ -9329,11 +9702,11 @@ msgstr "ユーザーの詳細の表示"
msgid "View User Interface settings"
msgstr "ユーザーインターフェース設定の表示"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "ワークフロー承認の詳細の表示"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "<0>docs.ansible.com0> での YAML サンプルの表示"
@@ -9342,15 +9715,15 @@ msgstr "<0>docs.ansible.com0> での YAML サンプルの表示"
msgid "View activity stream"
msgstr "アクティビティーストリームの表示"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "すべての認証情報を表示します。"
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "すべてのホストを表示します。"
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "すべてのインベントリーを表示します。"
@@ -9363,7 +9736,7 @@ msgstr "すべてのインベントリーホストを表示します。"
msgid "View all Jobs"
msgstr "すべてのジョブを表示"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "すべてのジョブを表示します。"
@@ -9372,24 +9745,24 @@ msgstr "すべてのジョブを表示します。"
msgid "View all Notification Templates."
msgstr "すべての通知テンプレートを表示します。"
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "すべての組織を表示します。"
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "すべてのプロジェクトを表示します。"
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "すべてのチームを表示します。"
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "すべてのテンプレートを表示します。"
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "すべてのユーザーを表示します。"
@@ -9397,24 +9770,24 @@ msgstr "すべてのユーザーを表示します。"
msgid "View all Workflow Approvals."
msgstr "すべてのワークフロー承認を表示します。"
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "すべてのアプリケーションを表示します。"
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "すべての認証情報タイプの表示"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "すべての実行環境の表示"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "すべてのインスタンスグループの表示"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "すべての管理ジョブの表示"
@@ -9452,13 +9825,13 @@ msgid "View smart inventory host details"
msgstr "スマートインベントリーホストの詳細の表示"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "ビュー"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "ビジュアライザー"
@@ -9466,8 +9839,8 @@ msgstr "ビジュアライザー"
msgid "WARNING:"
msgstr "警告:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "待機中"
@@ -9477,7 +9850,7 @@ msgid "Waiting for job output…"
msgstr "ジョブの出力を待機中…"
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "警告"
@@ -9499,80 +9872,90 @@ msgstr "このアカウントに関連するサブスクリプションを見つ
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Webhook の認証情報"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Webhook の認証情報"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Webhook キー"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Webhook サービス"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Webhook の詳細"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Webhook サービスは、この URL への POST 要求を作成してこのワークフロージョブテンプレートでジョブを起動できます。"
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Webhook サービスは、これを共有シークレットとして使用できます。"
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhook"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "水"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "水曜"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "週"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "平日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "週末"
@@ -9582,18 +9965,18 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr "Red Hat Ansible Automation Platform へようこそ! サブスクリプションをアクティブにするには、以下の手順を実行してください。"
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "{brandName} へようこそ"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr "チェックが付けられていない場合は、ローカル変数と外部ソースにあるものを組み合わせるマージが実行されます。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9613,28 +9996,29 @@ msgid "Workflow Approval not found."
msgstr "ワークフローの承認が見つかりません。"
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "ワークフローの承認"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "ワークフロージョブ"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "ワークフロージョブテンプレート"
@@ -9658,22 +10042,22 @@ msgstr "ワークフローのリンク"
msgid "Workflow Template"
msgstr "ワークフローテンプレート"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "ワークフロー承認メッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "ワークフロー承認メッセージのボディー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "ワークフロー拒否メッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "ワークフロー拒否メッセージのボディー"
@@ -9683,6 +10067,10 @@ msgstr "ワークフロー拒否メッセージのボディー"
msgid "Workflow documentation"
msgstr "ワークフロードキュメント"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "ワークフロージョブテンプレート"
@@ -9695,49 +10083,49 @@ msgstr "ワークフローリンクモーダル"
msgid "Workflow node view modal"
msgstr "ワークフローノード表示モーダル"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "ワークフロー保留メッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "ワークフロー保留メッセージのボディー"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "ワークフローのタイムアウトメッセージ"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "ワークフローのタイムアウトメッセージのボディー"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "書き込み"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "年"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "はい"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9751,7 +10139,7 @@ msgstr "次のグループを削除する権限がありません: {itemsUnableT
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "以下の関連付けを解除する権限がありません: {itemsUnableToDisassociate}"
@@ -9761,7 +10149,7 @@ msgid ""
"message. For more information, refer to the"
msgstr "メッセージにはいくつかの可能な変数を適用できます。詳細の参照: "
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "セッションの期限が切れました。中断したところから続行するには、ログインしてください。"
@@ -9787,18 +10175,18 @@ msgstr "ズームイン"
msgid "Zoom out"
msgstr "ズームアウト"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "新規 Webhook キーは保存時に生成されます。"
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "新規 Webhook URL は保存時に生成されます。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "そして、起動時のリビジョン更新をクリックします"
@@ -9819,7 +10207,7 @@ msgstr "削除のキャンセル"
msgid "cancel edit login redirect"
msgstr "ログインリダイレクトの編集をキャンセルする"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "コマンド"
@@ -9854,38 +10242,38 @@ msgid "disassociate"
msgstr "関連付けの解除"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "ドキュメント"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "編集"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "暗号化"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "(詳細情報)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "(詳細情報)"
@@ -9893,15 +10281,24 @@ msgstr "(詳細情報)"
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "ここ"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "ここ"
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "hosts"
@@ -9918,7 +10315,7 @@ msgstr "LDAP ユーザー"
msgid "login type"
msgstr "ログインタイプ"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "分"
@@ -9931,11 +10328,11 @@ msgid "node"
msgstr "ノード"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "/"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "以下へのオプション:"
@@ -9956,21 +10353,21 @@ msgstr "ページ別"
msgid "relaunch jobs"
msgstr "ジョブの再起動"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "秒"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "秒"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "モジュールの選択"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "冗長性の選択"
+#~ msgid "select verbosity"
+#~ msgstr "冗長性の選択"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -9980,8 +10377,8 @@ msgstr "次以降"
msgid "social login"
msgstr "ソーシャルログイン"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "ソースコントロールのブランチ"
@@ -9993,7 +10390,7 @@ msgstr "システム"
msgid "timed out"
msgstr "タイムアウト"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "変更の切り替え"
@@ -10001,7 +10398,7 @@ msgstr "変更の切り替え"
msgid "updated"
msgstr "更新"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "ワークフロージョブテンプレートの Wbhook キー"
@@ -10025,15 +10422,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10053,7 +10450,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10065,8 +10462,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10094,38 +10491,38 @@ msgstr "{brandName} logo"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} (<0>{username}0> による)"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} 分 {seconds} 秒"
@@ -10151,4 +10548,4 @@ msgstr "{selectedItemsCount, plural, one {Click to run a health check on the sel
#: components/AppContainer/AppContainer.js:154
msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
-msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
+msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
diff --git a/awx/ui/src/locales/ko/messages.po b/awx/ui/src/locales/ko/messages.po
index 77006ef491..6735367d49 100644
--- a/awx/ui/src/locales/ko/messages.po
+++ b/awx/ui/src/locales/ko/messages.po
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(상위 10개로 제한)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(실행 시 프롬프트)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "*이 필드는 지정된 인증 정보를 사용하여 외부 보안 관리 시스템에서 검색됩니다."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (프로젝트 root)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (정상)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (경고)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (정보)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (상세 정보)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (디버그)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (자세한 내용)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (디버그)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (연결 디버그)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (WinRM 디버그)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "서브스크립션 목록은 Red Hat 서브스크립션의 내보내기
msgid "ALL"
msgstr "전체"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "API 서비스/통합 키"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "API 토큰"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "API 서비스/통합 키"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "정보"
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "액세스"
@@ -158,12 +127,12 @@ msgstr "액세스"
msgid "Access Token Expiration"
msgstr "액세스 토큰 만료"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "계정 SID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "계정 토큰"
@@ -171,18 +140,19 @@ msgstr "계정 토큰"
msgid "Action"
msgstr "동작"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "동작"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "동작"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "동작"
msgid "Actions"
msgstr "동작"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "활동"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "활동 스트림"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "활동 스트림 유형 선택기"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "작업자"
@@ -274,19 +244,19 @@ msgstr "링크 추가"
msgid "Add Node"
msgstr "노드 추가"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "질문 추가"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "역할 추가"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "팀 역할 추가"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "사용자 역할 추가"
@@ -331,7 +301,7 @@ msgstr "새 그룹 추가"
msgid "Add new host"
msgstr "새 호스트 추가"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "리소스 유형 추가"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "워크플로우 템플릿 추가"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "관리"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "고급"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "고급 검색 설명서"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "고급 검색 값 입력"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "SCM 버전 변경으로 인한 프로젝트를 업데이트한 후 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다. 이는 Ansible 인벤토리 .ini 파일 형식과 같은 정적 콘텐츠를 위한 것입니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "발생 횟수 이후"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "경고 모달"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "모두"
@@ -402,29 +372,29 @@ msgstr "모든 작업 유형"
msgid "All jobs"
msgstr "모든 작업"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "분기 덮어쓰기 허용"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "분기 덮어쓰기 허용"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr "이 프로젝트를 사용하는 작업 템플릿에서 소스 제어 분기 또는 버전 변경을 허용합니다."
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "공백으로 구분된 허용된 URI 목록"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "항상"
@@ -448,27 +418,27 @@ msgstr "Ansible Tower 설명서"
msgid "Answer type"
msgstr "응답 유형"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "응답 변수 이름"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "모든"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "애플리케이션"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "애플리케이션 이름"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "애플리케이션 정보"
@@ -477,57 +447,58 @@ msgstr "애플리케이션 정보"
msgid "Application name"
msgstr "애플리케이션 이름"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "애플리케이션을 찾을 수 없습니다."
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "애플리케이션"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "애플리케이션 및 토큰"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "승인"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "승인"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "승인됨"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "승인 - {0} 자세한 내용은 활동 스트림을 참조하십시오."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "{0} - {1}에 승인"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "4월"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "이 작업을 취소하시겠습니까?"
@@ -571,16 +542,16 @@ msgstr "{1}에서 {0} 액세스 권한을 삭제하시겠습니까? 이렇게
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "{username} 에서 {0} 액세스 권한을 삭제하시겠습니까?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "이 작업을 취소하기 위한 요청을 제출하시겠습니까?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "인수"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "아티팩트"
@@ -602,7 +573,7 @@ msgstr "연결 모달"
msgid "At least one value must be selected for this field."
msgstr "이 필드에 대해 하나 이상의 값을 선택해야 합니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "8월"
@@ -614,18 +585,27 @@ msgstr "인증"
msgid "Authorization Code Expiration"
msgstr "인증 코드 만료"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "인증 권한 부여 유형"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -634,8 +614,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Azure AD 설정"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -668,7 +648,7 @@ msgstr "호스트로 돌아가기"
msgid "Back to Instance Groups"
msgstr "인스턴스 그룹으로 돌아가기"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "인스턴스로 돌아가기"
@@ -759,7 +739,7 @@ msgstr "인스턴스 그룹으로 돌아가기"
msgid "Back to management jobs"
msgstr "관리 작업으로 돌아가기"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -767,11 +747,11 @@ msgid ""
"path used to locate playbooks."
msgstr "플레이북을 찾는 데 사용되는 기본 경로입니다. 이 경로 내에 있는 디렉터리가 플레이북 디렉터리 드롭다운에 나열됩니다. 기본 경로 및 선택한 플레이북 디렉터리를 사용하면 플레이북을 찾는 데 사용되는 전체 경로가 제공됩니다."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "기본 인증 암호"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -787,43 +767,47 @@ msgstr "브랜드 이미지"
msgid "Browse"
msgstr "검색"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "검색 중..."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "기본적으로 Red Hat은 서비스 사용에 대한 분석 데이터를 수집하여 전송합니다. 서비스에서 수집하는 데이터에는 두 가지 카테고리가 있습니다. 자세한 내용은 <0>Tower 설명서 페이지0>를 참조하십시오. 이 기능을 비활성화하려면 다음 확인란을 선택 해제하십시오."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "기본적으로 Red Hat은 서비스 사용에 대한 분석 데이터를 수집하여 전송합니다. 서비스에서 수집하는 데이터에는 두 가지 카테고리가 있습니다. 자세한 내용은 <0>Tower 설명서 페이지0>를 참조하십시오. 이 기능을 비활성화하려면 다음 확인란을 선택 해제하십시오."
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "캐시 제한 시간"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "캐시 제한 시간"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "캐시 제한 시간 (초)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,11 +818,13 @@ msgstr "캐시 제한 시간 (초)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -859,7 +845,7 @@ msgstr "캐시 제한 시간 (초)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -868,32 +854,34 @@ msgstr "캐시 제한 시간 (초)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "취소"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "인벤토리 소스 동기화 취소"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "작업 취소"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "프로젝트 동기화 취소"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "동기화 취소"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "작업 취소"
@@ -905,7 +893,7 @@ msgstr "링크 변경 취소"
msgid "Cancel link removal"
msgstr "링크 삭제 취소"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "검색 취소"
@@ -931,19 +919,23 @@ msgid "Cancel subscription edit"
msgstr "서브스크립션 편집 취소"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "취소 {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "취소됨"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -959,10 +951,10 @@ msgstr "홉 노드에서 상태 점검을 실행할 수 없습니다."
msgid "Capacity"
msgstr "용량"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -988,13 +980,13 @@ msgstr "대소문자를 구분하지 않는 정규식 버전입니다."
msgid "Case-insensitive version of startswith."
msgstr "처음에 대소문자를 구분하지 않는 버전입니다."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
msgstr "PROJECTS_ROOT를 변경하여 {brandName} 배포 시 이 위치를 변경합니다."
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "변경됨"
@@ -1003,13 +995,13 @@ msgstr "변경됨"
msgid "Changes"
msgstr "변경 사항"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "채널"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "확인"
@@ -1033,20 +1025,20 @@ msgstr "알림 유형 선택"
msgid "Choose a Playbook Directory"
msgstr "Playbook 디렉토리 선택"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "소스 제어 유형 선택"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Webhook 서비스 선택"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "작업 유형 선택"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "모듈 선택"
@@ -1054,7 +1046,7 @@ msgstr "모듈 선택"
msgid "Choose a source"
msgstr "소스 선택"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "HTTP 방법 선택"
@@ -1073,20 +1065,20 @@ msgstr "선택한 리소스에 적용할 역할을 선택합니다. 선택한
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.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "새 역할을 받을 리소스 유형을 선택합니다. 예를 들어 사용자 집합에 새 역할을 추가하려면 사용자를 선택하고 다음을 클릭합니다. 다음 단계에서 특정 리소스를 선택할 수 있습니다."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "정리"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "지우기"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "모든 필터 지우기"
@@ -1099,7 +1091,7 @@ msgstr "서브스크립션 지우기"
msgid "Clear subscription selection"
msgstr "서브스크립션 선택 지우기"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "사용 가능한 노드를 클릭하여 새 링크를 생성합니다. 취소하려면 그래프 외부를 클릭합니다."
@@ -1127,29 +1119,29 @@ msgstr "클릭하여 설문조사 질문의 순서를 다시 정렬합니다."
msgid "Click to toggle default value"
msgstr "기본값을 토글하려면 클릭합니다."
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "작업 세부 정보를 보려면 클릭합니다."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "클라이언트 ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "클라이언트 식별자"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "클라이언트 식별자"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "클라이언트 시크릿"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "클라이언트 유형"
@@ -1178,24 +1170,36 @@ msgstr "모든 작업 이벤트 축소"
msgid "Collapse section"
msgstr "섹션 축소"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "명령"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "준수"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "동시 작업"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1215,11 +1219,11 @@ msgstr "로컬 인증 비활성화 확인"
msgid "Confirm Password"
msgstr "암호 확인"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "작업 취소 확인"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "취소 확인"
@@ -1251,7 +1255,7 @@ msgstr "모두 되돌리기 확인"
msgid "Confirm selection"
msgstr "선택 확인"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "컨테이너 그룹"
@@ -1283,31 +1287,40 @@ msgstr "컨트롤"
msgid "Control node"
msgstr "컨트롤 노드"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "인벤토리 소스 업데이트 작업에 대해 Ansible에서 생성할 출력 수준을 제어합니다."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr "플레이북이 실행되면 ansible이 생성되는 출력 수준을 제어합니다."
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "플레이북이 실행되면 ansible이 생성되는 출력 수준을 제어합니다."
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr "플레이북이 실행되면 ansible이 생성되는 출력 수준을 제어합니다."
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "통합"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "통합 선택"
@@ -1335,15 +1348,15 @@ msgstr "인벤토리 복사"
msgid "Copy Notification Template"
msgstr "알림 템플릿 복사"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "프로젝트 복사"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "템플릿 복사"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "클립보드에 전체 버전을 복사합니다."
@@ -1352,33 +1365,35 @@ msgstr "클립보드에 전체 버전을 복사합니다."
msgid "Copyright"
msgstr "저작권"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "만들기"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "새 애플리케이션 만들기"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "새 인증 정보 만들기"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "새 호스트 만들기"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "새 작업 템플릿 만들기"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "새 알림 템플릿 만들기"
@@ -1387,20 +1402,20 @@ msgstr "새 알림 템플릿 만들기"
msgid "Create New Organization"
msgstr "새 조직 만들기"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "새 프로젝트 만들기"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "새 일정 만들기"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "새 팀 만들기"
@@ -1409,7 +1424,7 @@ msgstr "새 팀 만들기"
msgid "Create New User"
msgstr "새 사용자 만들기"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "새 워크플로 템플릿 만들기"
@@ -1417,8 +1432,8 @@ msgstr "새 워크플로 템플릿 만들기"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "적용된 필터를 사용하여 새 스마트 인벤토리 만들기"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "새 컨테이너 그룹 만들기"
@@ -1435,30 +1450,30 @@ msgstr "새 인증 정보 유형 만들기"
msgid "Create new execution environment"
msgstr "새로운 실행 환경 만들기"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "새 그룹 만들기"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "새 호스트 만들기"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "새 인스턴스 그룹 만들기"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "새 인벤토리 만들기"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "새 스마트 인벤토리 만들기"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "새 소스 만들기"
@@ -1467,39 +1482,39 @@ msgid "Create user token"
msgstr "사용자 토큰 만들기"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "생성됨"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1510,7 +1525,7 @@ msgstr "생성됨"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1519,7 +1534,7 @@ msgstr "생성됨"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1547,24 +1562,23 @@ msgstr "(사용자 이름)에 의해 생성됨"
msgid "Created by (username)"
msgstr "(사용자 이름)에 의해 생성됨"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "인증 정보"
@@ -1577,14 +1591,15 @@ msgstr "인증 입력 소스"
msgid "Credential Name"
msgstr "인증 정보 이름"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "인증 정보 유형"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1592,11 +1607,11 @@ msgstr "인증 정보 유형"
msgid "Credential Types"
msgstr "인증 정보 유형"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "인증 정보가 성공적으로 복사됨"
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "인증 정보를 찾을 수 없습니다."
@@ -1605,15 +1620,19 @@ msgstr "인증 정보를 찾을 수 없습니다."
msgid "Credential passwords"
msgstr "인증 정보 암호"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "Kubernetes 또는 OpenShift로 인증하는 인증 정보입니다. \"Kubernetes/OpenShift API Bearer Token\" 유형이어야 합니다. 정보를 입력하지 않는 경우 기본 Pod의 서비스 계정이 사용됩니다."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "보안 컨테이너 레지스트리로 인증하기 위한 인증 정보."
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "인증 정보 유형을 찾을 수 없습니다."
@@ -1622,20 +1641,20 @@ msgstr "인증 정보 유형을 찾을 수 없습니다."
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "인증 정보"
@@ -1648,6 +1667,10 @@ msgstr "시작 시 암호가 필요한 인증 정보는 허용되지 않습니
msgid "Current page"
msgstr "현재 페이지"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "사용자 정의 Pod 사양"
@@ -1662,7 +1685,7 @@ msgstr "사용자 지정 가상 환경 {0} 은 실행 환경으로 교체해야
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "사용자 지정 가상 환경 {0} 은 실행 환경으로 교체해야 합니다. 실행 환경으로 마이그레이션하는 방법에 대한 자세한 내용은 해당 <0>문서0>를 참조하십시오."
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "사용자 지정 가상 환경 {virtualEnvironment} 은 실행 환경으로 교체해야 합니다. 실행 환경으로 마이그레이션하는 방법에 대한 자세한 내용은 해당 <0>문서0>를 참조하십시오."
@@ -1685,7 +1708,7 @@ msgstr "삭제됨"
msgid "Dashboard"
msgstr "대시보드"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "대시보드(모든 활동)"
@@ -1697,14 +1720,14 @@ msgstr "데이터 보존 기간"
msgid "Date"
msgstr "날짜"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "일"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "데이터 보관 일수"
@@ -1720,11 +1743,11 @@ msgstr "남은 일수"
msgid "Days to keep"
msgstr "보관 일수"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "디버그"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "12월"
@@ -1735,9 +1758,9 @@ msgstr "12월"
msgid "Default"
msgstr "기본값"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "기본 답변"
@@ -1745,9 +1768,9 @@ msgstr "기본 답변"
msgid "Default Execution Environment"
msgstr "기본 실행 환경"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "기본 응답"
@@ -1766,35 +1789,35 @@ msgstr "시스템 수준 기능 및 함수 정의"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "삭제"
@@ -1802,42 +1825,42 @@ msgstr "삭제"
msgid "Delete All Groups and Hosts"
msgstr "모든 그룹 및 호스트 삭제"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "인증 정보 삭제"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "실행 환경 삭제"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "호스트 삭제"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "인벤토리 삭제"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "작업 삭제"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "작업 템플릿 삭제"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "알림 삭제"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "조직 삭제"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "프로젝트 삭제"
@@ -1845,7 +1868,7 @@ msgstr "프로젝트 삭제"
msgid "Delete Questions"
msgstr "질문 삭제"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "일정 삭제"
@@ -1861,15 +1884,15 @@ msgstr "팀 삭제"
msgid "Delete User"
msgstr "사용자 삭제"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "사용자 토큰 삭제"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "워크플로우 승인 삭제"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "워크플로우 작업 템플릿 삭제"
@@ -1878,28 +1901,28 @@ msgstr "워크플로우 작업 템플릿 삭제"
msgid "Delete all nodes"
msgstr "모든 노드 삭제"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "애플리케이션 삭제"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "인증 정보 유형 삭제"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "오류 삭제"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "인스턴스 그룹 삭제"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "인벤토리 소스 삭제"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "스마트 인벤토리 삭제"
@@ -1907,7 +1930,7 @@ msgstr "스마트 인벤토리 삭제"
msgid "Delete survey question"
msgstr "설문 조사 질문 삭제"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1916,7 +1939,7 @@ msgid ""
msgstr "업데이트를 수행하기 전에 전체 로컬 리포지토리를 삭제합니다. 리포지토리 크기에 따라 업데이트를 완료하는 데 필요한 시간이 크게 증가할 수 있습니다."
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "동기화 전에 프로젝트 삭제"
@@ -1932,14 +1955,17 @@ msgstr "이 노드 삭제"
msgid "Delete {pluralizedItemName}?"
msgstr "{pluralizedItemName} 을/를 삭제하시겠습니까?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "삭제됨"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1951,67 +1977,71 @@ msgstr "삭제 오류"
msgid "Deletion error"
msgstr "삭제 오류"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "거부됨"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "거부됨 - {0} 자세한 내용은 활동 스트림을 참조하십시오."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "{0} - {1} 거부됨"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "거부"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "더 이상 사용되지 않음"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2020,93 +2050,96 @@ msgstr "더 이상 사용되지 않음"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "설명"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "대상 채널"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "대상 채널 또는 사용자"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "대상 SMS 번호"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "대상 SMS 번호"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "대상 채널"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "대상 채널 또는 사용자"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2141,53 +2174,53 @@ msgstr "대상 채널 또는 사용자"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "세부 정보"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "세부 정보 탭"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "직접 키"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "SSL 확인 비활성화"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "SSL 확인 비활성화"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "비활성화됨"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2202,12 +2235,12 @@ msgstr "연결 해제"
msgid "Disassociate group from host?"
msgstr "호스트에서 그룹을 분리하시겠습니까?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "그룹에서 호스트를 분리하시겠습니까?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "인스턴스를 인스턴스 그룹에서 분리하시겠습니까?"
@@ -2234,18 +2267,23 @@ msgid "Disassociate?"
msgstr "연결 해제하시겠습니까?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "동기화 전에 로컬 변경 사항 삭제"
#: screens/Template/shared/JobTemplateForm.js:479
-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 "이 작업 템플릿으로 수행한 작업을 지정된 수의 작업 슬라이스로 나눕니다. 각각 인벤토리의 일부에 대해 동일한 작업을 실행합니다."
+#~ 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 "이 작업 템플릿으로 수행한 작업을 지정된 수의 작업 슬라이스로 나눕니다. 각각 인벤토리의 일부에 대해 동일한 작업을 실행합니다."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "문서."
@@ -2261,55 +2299,71 @@ msgstr "완료"
msgid "Download Output"
msgstr "출력 다운로드"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "여기에 파일을 드래그하거나 업로드할 파일을 찾습니다."
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "이메일"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "이메일 옵션"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
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.js:96
+#: screens/Project/shared/Project.helptext.js:120
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.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2337,10 +2391,10 @@ msgstr "이 프로젝트를 사용하여 작업을 실행할 때마다 작업을
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2356,14 +2410,14 @@ msgstr "인증 정보 편집"
msgid "Edit Credential Plugin Configuration"
msgstr "인증 정보 플러그인 설정 편집"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2388,8 +2442,8 @@ msgstr "인증 정보 플러그인 설정 편집"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "세부 정보 편집"
@@ -2406,11 +2460,11 @@ msgstr "실행 환경 편집"
msgid "Edit Group"
msgstr "그룹 편집"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "호스트 편집"
@@ -2445,18 +2499,18 @@ msgstr "순서 편집"
msgid "Edit Organization"
msgstr "조직 편집"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "프로젝트 편집"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "질문 편집"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "일정 편집"
@@ -2468,15 +2522,15 @@ msgstr "소스 편집"
msgid "Edit Survey"
msgstr "설문조사 편집"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "팀 편집"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "템플릿 편집"
@@ -2497,12 +2551,12 @@ msgstr "인증 정보 유형 편집"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "세부 정보 편집"
@@ -2511,7 +2565,7 @@ msgstr "세부 정보 편집"
msgid "Edit group"
msgstr "그룹 편집"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "호스트 편집"
@@ -2533,13 +2587,13 @@ msgstr "이 링크 편집"
msgid "Edit this node"
msgstr "이 노드 편집"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "워크플로우 편집"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "경과됨"
@@ -2559,15 +2613,15 @@ msgstr "작업이 실행되는 데 경과된 시간"
msgid "Email"
msgstr "이메일"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "이메일 옵션"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "동시 작업 활성화"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "실제 스토리지 활성화"
@@ -2575,14 +2629,14 @@ msgstr "실제 스토리지 활성화"
msgid "Enable HTTPS certificate verification"
msgstr "HTTPS 인증서 확인 활성화"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Webhook 활성화"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "이 워크플로 작업 템플릿에 대한 Webhook을 활성화합니다."
@@ -2594,8 +2648,8 @@ msgstr "외부 로깅 활성화"
msgid "Enable log system tracking facts individually"
msgstr "로그 시스템 추적 사실을 개별적으로 활성화"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "권한 에스컬레이션 활성화"
@@ -2603,7 +2657,7 @@ msgstr "권한 에스컬레이션 활성화"
msgid "Enable simplified login for your {brandName} applications"
msgstr "{brandName} 애플리케이션에 대한 간편 로그인 활성화"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "이 템플릿에 대한 Webhook을 활성화합니다."
@@ -2613,29 +2667,29 @@ msgstr "이 템플릿에 대한 Webhook을 활성화합니다."
msgid "Enabled"
msgstr "활성화됨"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "활성화된 옵션"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "활성화된 값"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "활성화된 변수"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2644,19 +2698,23 @@ msgid ""
msgstr "프로비저닝 콜백 URL 생성을 활성화합니다. 호스트에서 URL을 사용하면 {brandName} 에 액세스하고 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다."
#: screens/Template/shared/JobTemplateForm.js:568
-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 "프로비저닝 콜백 URL 생성을 활성화합니다. 호스트에서 URL을 사용하면 {brandName} 에 연락하여 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다."
+#~ 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 "프로비저닝 콜백 URL 생성을 활성화합니다. 호스트에서 URL을 사용하면 {brandName} 에 연락하여 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "암호화"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "종료"
@@ -2668,7 +2726,7 @@ msgstr "최종 사용자 라이센스 계약"
msgid "End date"
msgstr "종료일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "종료일/시간"
@@ -2704,95 +2762,99 @@ msgid ""
msgstr "JSON 또는 YAML 구문을 사용하여 인벤토리 변수를 입력합니다. 라디오 버튼을 사용하여 두 항목 사이를 전환합니다. 구문 예제는 Ansible Tower 설명서를 참조하십시오."
#: screens/Inventory/shared/InventoryForm.js:92
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
-msgstr "JSON 또는 YAML 구문을 사용하여 인벤토리 변수를 입력합니다. 라디오 버튼을 사용하여 두 항목 사이를 전환합니다. 구문 예제는 Ansible Tower 설명서를 참조하십시오."
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
+#~ msgstr "JSON 또는 YAML 구문을 사용하여 인벤토리 변수를 입력합니다. 라디오 버튼을 사용하여 두 항목 사이를 전환합니다. 구문 예제는 Ansible Tower 설명서를 참조하십시오."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "쉼표 없이 한 줄에 하나의 주석 태그를 입력합니다."
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "쉼표 없이 한 줄에 하나의 주석 태그를 입력합니다."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "한 줄에 하나의 IRC 채널 또는 사용자 이름을 입력합니다. 채널에는 # 기호가 필요하지 않으며 사용자의 경우 @ 기호는 필요하지 않습니다."
+#~ 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 "한 줄에 하나의 IRC 채널 또는 사용자 이름을 입력합니다. 채널에는 # 기호가 필요하지 않으며 사용자의 경우 @ 기호는 필요하지 않습니다."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "한 줄에 하나의 Slack 채널을 입력합니다. 채널에 대해 파운드 기호(#)가 필요합니다. 특정 메시지에 응답하거나 스레드를 시작하려면 상위 메시지 ID가16자리인 채널에 상위 메시지 ID를 추가합니다. 10 번째 자리 숫자 뒤에 점(.)을 수동으로 삽입해야 합니다. 예:#destination-channel, 1231257890.006423. Slack 참조"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr "한 줄에 하나의 Slack 채널을 입력합니다. 채널에 대해 파운드 기호(#)가 필요합니다. 특정 메시지에 응답하거나 스레드를 시작하려면 상위 메시지 ID가16자리인 채널에 상위 메시지 ID를 추가합니다. 10 번째 자리 숫자 뒤에 점(.)을 수동으로 삽입해야 합니다. 예:#destination-channel, 1231257890.006423. Slack 참조"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "이 유형의 알림에 대한 수신자 목록을 만들려면 한 줄에 하나의 이메일 주소를 입력합니다."
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr "이 유형의 알림에 대한 수신자 목록을 만들려면 한 줄에 하나의 이메일 주소를 입력합니다."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "SMS 메시지를 라우팅할 위치를 지정하려면 한 줄에 하나의 전화 번호를 입력합니다. 전화 번호는 +11231231234 형식이어야 합니다. 자세한 내용은 Twilio 문서를 참조하십시오."
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr "SMS 메시지를 라우팅할 위치를 지정하려면 한 줄에 하나의 전화 번호를 입력합니다. 전화 번호는 +11231231234 형식이어야 합니다. 자세한 내용은 Twilio 문서를 참조하십시오."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "+18005550199 형식으로 Twilio의 \"메시징 서비스(Messaging Service)\"와 연결된 번호를 입력합니다."
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr "+18005550199 형식으로 Twilio의 \"메시징 서비스(Messaging Service)\"와 연결된 번호를 입력합니다."
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>Insights1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>Insights1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>Tower1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>Tower1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>aws_ec21> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>aws_ec21> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>azure_rm1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>azure_rm1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>foreman1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>foreman1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>gcp_compute1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>gcp_compute1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>openstack1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>openstack1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>ovirt1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>ovirt1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>vmware_vm_inventory1> 플러그인 구성 가이드를 참조하십시오."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "인벤토리 소스를 구성할 변수를 입력합니다. 이 플러그인을 구성하는 방법에 대한 자세한 내용은 설명서의 <0>인벤토리 플러그인0> 섹션과 <1>vmware_vm_inventory1> 플러그인 구성 가이드를 참조하십시오."
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "JSON 또는 YAML 구문을 사용하여 변수를 입력합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다."
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "JSON 또는 YAML 구문을 사용하여 변수를 입력합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다."
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "오류"
@@ -2801,90 +2863,90 @@ msgstr "오류"
msgid "Error fetching updated project"
msgstr "업데이트된 프로젝트를 가져오는 동안 오류 발생"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "오류 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "오류 메시지 본문"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "워크플로우를 저장하는 동안 오류가 발생했습니다!"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2895,13 +2957,16 @@ msgstr "워크플로우를 저장하는 동안 오류가 발생했습니다!"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "오류!"
@@ -2909,12 +2974,12 @@ msgstr "오류!"
msgid "Error:"
msgstr "오류:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "오류"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2932,11 +2997,11 @@ msgstr "이벤트 세부 정보 모달"
msgid "Event summary not available"
msgstr "이벤트 요약을 사용할 수 없음"
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "이벤트"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "1분마다 {0} 번"
@@ -2952,35 +3017,35 @@ msgstr "정확한 일치(지정되지 않은 경우 기본 조회)."
msgid "Exact search on id field."
msgstr "id 필드에서 정확한 검색"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "GIT 소스 제어용 URL의 예는 다음과 같습니다."
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "원격 아카이브 소스 제어에 대한 URL의 예는 다음과 같습니다."
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "하위 버전 소스 제어(Subversion Source Control)의 URL의 예는 다음과 같습니다."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "예를 들면 다음과 같습니다."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "예:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "부모 노드의 최종 상태에 관계없이 실행합니다."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "부모 노드가 실패 상태가 되면 실행합니다."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "부모 노드가 성공하면 실행됩니다."
@@ -2991,29 +3056,29 @@ msgstr "실행"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "실행 환경"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "실행 환경이 없습니다"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3021,7 +3086,7 @@ msgstr "실행 환경이 없습니다"
msgid "Execution Environments"
msgstr "실행 환경"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "실행 노드"
@@ -3029,11 +3094,11 @@ msgstr "실행 노드"
msgid "Execution environment copied successfully"
msgstr "실행 환경이 성공적으로 복사되었습니다"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "실행 환경이 없거나 삭제되었습니다."
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "실행 환경을 찾을 수 없습니다."
@@ -3050,7 +3115,7 @@ msgstr "저장하지 않고 종료"
msgid "Expand"
msgstr "확장"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "모든 줄 확장"
@@ -3072,15 +3137,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "파일에 client_email, project_id 또는 private_key 중 하나가 있어야 합니다."
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "만료"
@@ -3092,13 +3157,12 @@ msgstr "만료일"
msgid "Expires on UTC"
msgstr "UTC에서 만료"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "{0}에 만료"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "설명"
@@ -3106,35 +3170,39 @@ msgstr "설명"
msgid "External Secret Management System"
msgstr "외부 시크릿 관리 시스템"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "추가 변수"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "완료:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "실제 스토리지"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "실제"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3159,15 +3227,16 @@ msgstr "실패한 호스트"
msgid "Failed jobs"
msgstr "실패한 작업"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "하나 이상의 워크플로우 승인을 승인하지 못했습니다."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "워크플로우 승인을 승인하지 못했습니다."
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "역할을 적절하게 할당하지 못했습니다."
@@ -3177,31 +3246,36 @@ msgid "Failed to associate role"
msgstr "역할을 연결하지 못했습니다."
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "연결에 실패했습니다."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "인벤토리 소스 동기화를 취소하지 못했습니다."
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "프로젝트 동기화 취소 실패"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "하나 이상의 작업을 취소하지 못했습니다."
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "{0} 취소 실패"
@@ -3217,20 +3291,20 @@ msgstr "실행 환경을 복사하지 못했습니다."
msgid "Failed to copy inventory."
msgstr "인벤토리를 복사하지 못했습니다."
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "프로젝트를 복사하지 못했습니다."
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "템플릿을 복사하지 못했습니다."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "애플리케이션을 삭제하지 못했습니다."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "인증 정보를 삭제하지 못했습니다."
@@ -3238,24 +3312,24 @@ msgstr "인증 정보를 삭제하지 못했습니다."
msgid "Failed to delete group {0}."
msgstr "그룹 {0} 을/를 삭제하지 못했습니다."
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "호스트를 삭제하지 못했습니다."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "인벤토리 소스 {name} 삭제에 실패했습니다."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "인벤토리를 삭제하지 못했습니다."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "작업 템플릿을 삭제하지 못했습니다."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "알림을 삭제하지 못했습니다."
@@ -3267,7 +3341,7 @@ msgstr "하나 이상의 애플리케이션을 삭제하지 못했습니다."
msgid "Failed to delete one or more credential types."
msgstr "하나 이상의 인증 정보 유형을 삭제하지 못했습니다."
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "하나 이상의 인증 정보를 삭제하지 못했습니다."
@@ -3279,8 +3353,8 @@ msgstr "하나 이상의 실행 환경을 삭제하지 못했습니다."
msgid "Failed to delete one or more groups."
msgstr "하나 이상의 그룹을 삭제하지 못했습니다."
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "하나 이상의 호스트를 삭제하지 못했습니다."
@@ -3292,15 +3366,15 @@ msgstr "하나 이상의 인스턴스 그룹을 삭제하지 못했습니다."
msgid "Failed to delete one or more inventories."
msgstr "하나 이상의 인벤토리를 삭제하지 못했습니다."
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "하나 이상의 인벤토리 소스를 삭제하지 못했습니다."
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "하나 이상의 작업 템플릿을 삭제하지 못했습니다."
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "하나 이상의 작업을 삭제하지 못했습니다."
@@ -3324,7 +3398,7 @@ msgstr "하나 이상의 일정을 삭제하지 못했습니다."
msgid "Failed to delete one or more teams."
msgstr "하나 이상의 팀을 삭제하지 못했습니다."
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "하나 이상의 템플릿을 삭제하지 못했습니다."
@@ -3332,7 +3406,7 @@ msgstr "하나 이상의 템플릿을 삭제하지 못했습니다."
msgid "Failed to delete one or more tokens."
msgstr "하나 이상의 토큰을 삭제하지 못했습니다."
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "하나 이상의 사용자 토큰을 삭제하지 못했습니다."
@@ -3340,19 +3414,19 @@ msgstr "하나 이상의 사용자 토큰을 삭제하지 못했습니다."
msgid "Failed to delete one or more users."
msgstr "하나 이상의 사용자를 삭제하지 못했습니다."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "하나 이상의 워크플로우 승인을 삭제하지 못했습니다."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "조직을 삭제하지 못했습니다."
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "프로젝트를 삭제하지 못했습니다."
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "역할을 삭제하지 못했습니다"
@@ -3361,11 +3435,11 @@ msgstr "역할을 삭제하지 못했습니다"
msgid "Failed to delete role."
msgstr "역할을 삭제하지 못했습니다."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "일정을 삭제하지 못했습니다."
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "스마트 인벤토리를 삭제하지 못했습니다."
@@ -3377,11 +3451,11 @@ msgstr "팀을 삭제하지 못했습니다."
msgid "Failed to delete user."
msgstr "사용자를 삭제하지 못했습니다."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "워크플로우 승인을 삭제하지 못했습니다."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "워크플로 작업 템플릿을 삭제하지 못했습니다."
@@ -3390,11 +3464,11 @@ msgstr "워크플로 작업 템플릿을 삭제하지 못했습니다."
msgid "Failed to delete {name}."
msgstr "{name} 을/를 삭제하지 못했습니다."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "하나 이상의 워크플로우 승인을 거부하지 못했습니다."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "워크플로우 승인을 거부하지 못했습니다."
@@ -3404,13 +3478,13 @@ msgstr "워크플로우 승인을 거부하지 못했습니다."
msgid "Failed to disassociate one or more groups."
msgstr "하나 이상의 그룹을 연결 해제하지 못했습니다."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "하나 이상의 호스트를 연결 해제하지 못했습니다."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "하나 이상의 인스턴스를 연결 해제하지 못했습니다."
@@ -3418,7 +3492,7 @@ msgstr "하나 이상의 인스턴스를 연결 해제하지 못했습니다."
msgid "Failed to disassociate one or more teams."
msgstr "하나 이상의 팀을 연결 해제하지 못했습니다."
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "사용자 정의 로그인 구성 설정을 가져오지 못했습니다. 시스템 기본 설정이 대신 표시됩니다."
@@ -3426,7 +3500,7 @@ msgstr "사용자 정의 로그인 구성 설정을 가져오지 못했습니다
msgid "Failed to fetch the updated project data."
msgstr "업데이트된 프로젝트 데이터를 가져오지 못했습니다."
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3444,7 +3518,7 @@ msgstr "전체 노드 리소스 오브젝트를 검색하지 못했습니다."
msgid "Failed to retrieve node credentials."
msgstr "노드 인증 정보를 검색하지 못했습니다."
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "하나 이상의 인스턴스에서 상태 확인을 실행하지 못했습니다."
@@ -3457,11 +3531,11 @@ msgstr "테스트 알림을 발송하지 못했습니다."
msgid "Failed to sync inventory source."
msgstr "인벤토리 소스를 동기화하지 못했습니다."
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "프로젝트를 동기화하지 못했습니다."
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "일부 또는 모든 인벤토리 소스를 동기화하지 못했습니다."
@@ -3481,9 +3555,9 @@ msgstr "알림을 전환하지 못했습니다."
msgid "Failed to toggle schedule."
msgstr "일정을 전환하지 못했습니다."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "크기 조정을 업데이트하지 못했습니다."
@@ -3492,7 +3566,7 @@ msgstr "크기 조정을 업데이트하지 못했습니다."
msgid "Failed to update survey."
msgstr "설문 조사를 업데이트하지 못했습니다."
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "사용자 토큰에 실패했습니다."
@@ -3501,17 +3575,17 @@ msgstr "사용자 토큰에 실패했습니다."
msgid "Failure"
msgstr "실패"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "False"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "2월"
@@ -3535,11 +3609,11 @@ msgstr "필드는 지정된 정규식과 일치합니다."
msgid "Field starts with value."
msgstr "필드는 값으로 시작합니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "다섯 번째"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "파일 차이점"
@@ -3551,28 +3625,28 @@ msgstr "파일 업로드가 거부되었습니다. 단일 .json 파일을 선택
msgid "File, directory or script"
msgstr "파일, 디렉터리 또는 스크립트"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "{name}으로 필터링"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "완료 시간"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "완료"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "첫 번째"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3581,17 +3655,17 @@ msgstr "첫 번째"
msgid "First Name"
msgstr "이름"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "첫 번째 실행"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "이름"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "먼저 키 선택"
@@ -3613,51 +3687,57 @@ msgid "Follow"
msgstr "팔로우"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "작업 템플릿의 경우 실행을 선택하여 플레이북을 실행합니다. 플레이북을 실행하지 않고 플레이북 구문만 확인하고, 환경 설정을 테스트하고, 문제를 보고하려면 확인을 선택합니다."
+#~ 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.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "자세한 내용은 다음을 참조하십시오."
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "포크"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "네 번째"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "빈도 세부 정보"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "빈도가 예상 값과 일치하지 않음"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "금요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "금요일"
@@ -3669,7 +3749,7 @@ msgstr "id, 이름 또는 설명 필드에서 퍼지 검색"
msgid "Fuzzy search on name field."
msgstr "이름 필드에서 퍼지 검색"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Galaxy 인증 정보"
@@ -3678,7 +3758,7 @@ msgstr "Galaxy 인증 정보"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Galaxy 인증 정보는 조직에 속해 있어야 합니다."
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "팩트 수집"
@@ -3693,13 +3773,14 @@ msgstr "서브스크립션 가져오기"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3737,17 +3818,17 @@ msgstr "GitHub Team"
msgid "GitHub settings"
msgstr "GitHub 설정"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "전역적으로 사용 가능"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "전역적으로 사용 가능한 실행 환경을 특정 조직에 다시 할당할 수 없습니다."
@@ -3784,12 +3865,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Grafana API 키"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "Grafana URL"
@@ -3805,7 +3886,7 @@ msgstr "비교보다 크거나 같습니다."
msgid "Group"
msgstr "그룹"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "그룹 세부 정보"
@@ -3813,12 +3894,12 @@ msgstr "그룹 세부 정보"
msgid "Group type"
msgstr "그룹 유형"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3827,13 +3908,13 @@ msgstr "그룹 유형"
msgid "Groups"
msgstr "그룹"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "HTTP 헤더"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "HTTP 방법"
@@ -3841,10 +3922,10 @@ msgstr "HTTP 방법"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "상태 점검"
+#~ msgid "Health Check"
+#~ msgstr "상태 점검"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "상태 양호"
@@ -3875,23 +3956,23 @@ msgstr "홉"
msgid "Hop node"
msgstr "홉 노드"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "호스트"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "호스트 동기화 실패"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "호스트 동기화 확인"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "호스트 구성 키"
@@ -3899,61 +3980,61 @@ msgstr "호스트 구성 키"
msgid "Host Count"
msgstr "호스트 수"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "호스트 세부 정보"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "호스트 실패"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "호스트 실패"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "호스트 필터"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "호스트 이름"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "호스트 확인"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "호스트 폴링"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "호스트 재시도"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "호스트 건너뜀"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "호스트 시작됨"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "호스트에 연결할 수 없음"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "호스트 세부 정보"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "호스트 세부 정보 모달"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "호스트를 찾을 수 없습니다."
@@ -3963,20 +4044,20 @@ msgid "Host status information for this job is unavailable."
msgstr "이 작업의 호스트 상태 정보를 사용할 수 없습니다."
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4001,7 +4082,7 @@ msgstr "가져온 호스트"
msgid "Hosts remaining"
msgstr "남아 있는 호스트"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "시간"
@@ -4018,25 +4099,25 @@ msgstr "하이브리드"
msgid "Hybrid node"
msgstr "하이브리드 노드"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "대시보드 ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "패널 ID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "대시보드 ID (선택 사항)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "패널 ID (선택 사항)"
@@ -4045,49 +4126,49 @@ msgstr "패널 ID (선택 사항)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC 닉네임"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "IRC 서버 주소"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "IRC 서버 포트"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC 닉네임"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "IRC 서버 주소"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "IRC 서버 암호"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "IRC 서버 포트"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "아이콘 URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4099,12 +4180,16 @@ msgid ""
msgstr "이 옵션을 선택하면 이전에 외부 소스에 있었지만 지금은 삭제된 모든 호스트 및 그룹이 인벤토리에서 제거됩니다. 인벤토리 소스에서 관리하지 않은 호스트 및 그룹은 수동으로 생성된 다음 그룹으로 승격되거나 승격할 수동으로 생성된 그룹이 없는 경우 인벤토리의 \"모든\" 기본 그룹에 남아 있게 됩니다."
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "활성화하면 이 플레이북을 관리자로 실행합니다."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr "활성화하면 이 플레이북을 관리자로 실행합니다."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4112,34 +4197,46 @@ msgid ""
msgstr "활성화된 경우 지원되는 Ansible 작업에서 변경한 내용을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다."
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "활성화된 경우 지원되는 Ansible 작업에서 변경한 내용을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다."
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr "활성화된 경우 지원되는 Ansible 작업에서 변경한 내용을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "활성화된 경우 지원되는 Ansible 작업에서 변경한 내용을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다."
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "활성화하면 이 작업 템플릿을 동시에 실행할 수 있습니다."
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr "활성화하면 이 작업 템플릿을 동시에 실행할 수 있습니다."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "활성화하면 이 워크플로 작업 템플릿을 동시에 실행할 수 있습니다."
#: screens/Template/shared/JobTemplateForm.js:611
-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 "활성화하면 수집된 사실이 저장되어 호스트 수준에서 볼 수 있습니다. 팩트는 지속되며 런타임 시 팩트 캐시에 주입됩니다."
+#~ 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 "활성화하면 수집된 사실이 저장되어 호스트 수준에서 볼 수 있습니다. 팩트는 지속되며 런타임 시 팩트 캐시에 주입됩니다."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "지정된 경우 이 필드는 워크플로우를 볼 때 리소스 이름 대신 노드에 표시됩니다."
@@ -4157,26 +4254,26 @@ msgstr "서브스크립션이 없는 경우 Red Hat에 문의하여 평가판
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "이 특정 사용자에 대한 액세스 권한만 제거하려면 팀에서 제거하십시오."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "이미지"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "파일 포함"
@@ -4195,17 +4292,17 @@ msgstr "정보"
msgid "Initiated By"
msgstr "초기자"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "초기자"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "초기자 (사용자 이름)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "인젝터 구성"
@@ -4215,18 +4312,22 @@ msgstr "인젝터 구성"
msgid "Input configuration"
msgstr "입력 구성"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Insights 인증 정보"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Insights for Ansible Automation Platform 대시보드"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Insights for Ansible Automation Platform 대시보드"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4236,27 +4337,27 @@ msgstr "Insights 시스템 ID"
msgid "Instance"
msgstr "인스턴스"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "인스턴스 필터"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "인스턴스 그룹"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "인스턴스 그룹"
@@ -4264,7 +4365,7 @@ msgstr "인스턴스 그룹"
msgid "Instance ID"
msgstr "인스턴스 ID"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "인스턴스 세부 정보"
@@ -4273,7 +4374,7 @@ msgstr "인스턴스 세부 정보"
msgid "Instance group"
msgstr "인스턴스 그룹"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "인스턴스 그룹을 찾을 수 없습니다."
@@ -4282,21 +4383,21 @@ msgstr "인스턴스 그룹을 찾을 수 없습니다."
msgid "Instance group used capacity"
msgstr "인스턴스 그룹이 사용하는 용량"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "인스턴스 그룹"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "인스턴스"
@@ -4320,15 +4421,15 @@ msgstr "잘못된 링크 대상입니다. 자식 또는 상위 노드에 연결
msgid "Invalid time format"
msgstr "잘못된 시간 형식"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "사용자 이름 또는 암호가 잘못되었습니다. 다시 시도하십시오."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4344,36 +4445,38 @@ msgstr "소스와 함께 인벤토리를 복사할 수 없습니다."
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "인벤토리"
@@ -4381,7 +4484,7 @@ msgstr "인벤토리"
msgid "Inventory (Name)"
msgstr "인벤토리(이름)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "인벤토리 파일"
@@ -4389,35 +4492,35 @@ msgstr "인벤토리 파일"
msgid "Inventory ID"
msgstr "인벤토리 ID"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "인벤토리 소스"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "인벤토리 소스 프로젝트"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "인벤토리 소스 동기화"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "인벤토리 소스 동기화 오류"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "인벤토리 소스"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "인벤토리 동기화"
@@ -4433,12 +4536,12 @@ msgstr "인벤토리 업데이트"
msgid "Inventory copied successfully"
msgstr "인벤토리가 성공적으로 복사됨"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "인벤토리 파일"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "인벤토리를 찾을 수 없음"
@@ -4450,23 +4553,23 @@ msgstr "인벤토리 동기화"
msgid "Inventory sync failures"
msgstr "인벤토리 동기화 실패"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "확장됨"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "확장되지 않음"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "항목 실패"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "항목 확인"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "건너뛴 항목"
@@ -4480,49 +4583,50 @@ msgid "Items per page"
msgstr "페이지당 항목"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "작업 ID:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "JSON 탭"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "1월"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "작업"
+#~ msgid "Job"
+#~ msgstr "작업"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "작업 취소 오류"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "작업 삭제 오류"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "작업 ID"
@@ -4531,33 +4635,33 @@ msgid "Job Runs"
msgstr "작업 실행"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "작업 분할"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "작업 분할 부모"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "작업 분할"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "작업 상태"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "작업 태그"
@@ -4566,9 +4670,9 @@ msgstr "작업 태그"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "작업 템플릿"
@@ -4576,13 +4680,13 @@ msgstr "작업 템플릿"
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 "작업 템플릿 기본 인증 정보는 동일한 유형 중 하나로 교체해야 합니다. 계속하려면 다음 유형의 인증 정보를 선택하십시오. {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4597,15 +4701,15 @@ msgstr "노드를 생성하거나 편집할 때 인벤토리 또는 프로젝트
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "노드를 생성하거나 편집할 때 암호를 입력하라는 인증 정보가 있는 작업 템플릿을 선택할 수 없습니다."
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "작업 유형"
@@ -4617,35 +4721,35 @@ msgstr "작업 상태"
msgid "Job status graph tab"
msgstr "작업 상태 그래프 탭"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "작업 템플릿"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "작업"
@@ -4653,27 +4757,27 @@ msgstr "작업"
msgid "Jobs settings"
msgstr "작업 설정"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "7월"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "6월"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "키"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "키 선택"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "키 유형 헤드"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "키워드"
@@ -4730,44 +4834,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "레이블"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "레이블 이름"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "레이블"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "마지막"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "마지막 상태 점검"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "마지막 작업 상태"
@@ -4775,36 +4880,36 @@ msgstr "마지막 작업 상태"
msgid "Last Login"
msgstr "마지막 로그인"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "최종 업데이트"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4813,12 +4918,12 @@ msgstr "최종 업데이트"
msgid "Last Name"
msgstr "성"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "마지막 실행"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "마지막 실행"
@@ -4826,19 +4931,19 @@ msgstr "마지막 실행"
msgid "Last job"
msgstr "마지막 작업"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "마지막으로 변경된 사항"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "성"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "마지막으로 사용됨"
@@ -4846,18 +4951,18 @@ msgstr "마지막으로 사용됨"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "시작"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "관리 작업 시작"
+#~ msgid "Launch Management Job"
+#~ msgstr "관리 작업 시작"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "템플릿 시작"
@@ -4870,7 +4975,7 @@ msgstr "템플릿 시작"
msgid "Launch management job"
msgstr "관리 작업 시작"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "템플릿 시작"
@@ -4887,15 +4992,19 @@ msgstr "시작 | {0}"
msgid "Launched By"
msgstr "시작자"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "(사용자 이름)에 의해 시작됨"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform 관련 상세 정보"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform 관련 상세 정보"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "이 필드를 비워 두고 실행 환경을 전역적으로 사용할 수 있도록 합니다."
@@ -4914,19 +5023,20 @@ msgstr "비교 값보다 적습니다."
msgid "Less than or equal to comparison."
msgstr "비교 값보다 적거나 같습니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "제한"
@@ -4942,15 +5052,15 @@ msgstr "로딩 중"
msgid "Local"
msgstr "지역"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "현지 시간대"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "현지 시간대"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "로그인"
@@ -4969,7 +5079,7 @@ msgid "Logout"
msgstr "로그 아웃"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "검색 모달"
@@ -4985,9 +5095,9 @@ msgstr "검색 유형"
msgid "Lookup typeahead"
msgstr "자동 완성 검색"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "최신 동기화"
@@ -4995,11 +5105,11 @@ msgstr "최신 동기화"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "시스템 인증 정보"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "관리됨"
@@ -5008,13 +5118,13 @@ msgstr "관리됨"
msgid "Managed nodes"
msgstr "관리형 노드"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "관리 작업"
@@ -5023,7 +5133,7 @@ msgstr "관리 작업"
msgid "Management Jobs"
msgstr "관리 작업"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "관리 작업"
@@ -5032,11 +5142,11 @@ msgstr "관리 작업"
msgid "Management job launch error"
msgstr "관리 작업 시작 오류"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "관리 작업을 찾을 수 없습니다."
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "관리 작업"
@@ -5044,18 +5154,19 @@ msgstr "관리 작업"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "수동"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "3월"
@@ -5064,20 +5175,20 @@ msgstr "3월"
msgid "Mattermost"
msgstr "가장 중요"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "최대 호스트"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "최대"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "최대 길이"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "5월"
@@ -5102,27 +5213,29 @@ msgstr "메트릭"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "최소"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "최소 길이"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으로 할당되는 최소 인스턴스 수입니다."
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
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.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "분"
@@ -5143,23 +5256,23 @@ msgid "Miscellaneous System settings"
msgstr "기타 시스템 설정"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "누락됨"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "누락된 리소스"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "수정됨"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5170,7 +5283,7 @@ msgstr "수정됨"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5179,7 +5292,7 @@ msgstr "수정됨"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5207,33 +5320,33 @@ msgstr "(사용자 이름)에 의해 수정됨"
msgid "Modified by (username)"
msgstr "(사용자 이름)에 의해 수정됨"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "모듈"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "모듈 인수"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "모듈 이름"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "월요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "월요일"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "월"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "더 많은 정보"
@@ -5241,13 +5354,13 @@ msgstr "더 많은 정보"
msgid "More information for"
msgstr "더 많은 정보"
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "다중 선택"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "다중 선택 옵션"
@@ -5259,7 +5372,7 @@ msgstr "다중 선택(여러 선택)"
msgid "Multiple Choice (single select)"
msgstr "다중 선택(단일 선택)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "다중 선택 옵션"
@@ -5267,13 +5380,13 @@ msgstr "다중 선택 옵션"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5305,15 +5418,15 @@ msgstr "다중 선택 옵션"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5329,18 +5442,18 @@ msgstr "다중 선택 옵션"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5350,14 +5463,14 @@ msgstr "다중 선택 옵션"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5372,8 +5485,8 @@ msgstr "다중 선택 옵션"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5403,15 +5516,15 @@ msgstr "다중 선택 옵션"
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5434,40 +5547,40 @@ msgstr "다중 선택 옵션"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5475,10 +5588,10 @@ msgstr "다중 선택 옵션"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "이름"
@@ -5486,9 +5599,9 @@ msgstr "이름"
msgid "Navigation"
msgstr "탐색"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "없음"
@@ -5496,22 +5609,21 @@ msgstr "없음"
msgid "Never Updated"
msgstr "업데이트되지 않음"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "만료되지 않음"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "새로운"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5520,27 +5632,27 @@ msgstr "새로운"
msgid "Next"
msgstr "다음"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "다음 실행"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "제공되지 않음"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "일치하는 호스트가 없음"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "남아 있는 호스트가 없음"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "사용할 수 있는 JSON 없음"
@@ -5549,12 +5661,12 @@ msgid "No Jobs"
msgstr "작업 없음"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "사용할 수 있는 표준 오류 없음"
+#~ msgid "No Standard Error Available"
+#~ msgstr "사용할 수 있는 표준 오류 없음"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "사용할 수 있는 표준 오류 없음"
+#~ msgid "No Standard Out Available"
+#~ msgstr "사용할 수 있는 표준 오류 없음"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5564,7 +5676,7 @@ msgstr "인벤토리 동기화 실패 없음"
msgid "No items found."
msgstr "항목을 찾을 수 없습니다."
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "사용 가능한 작업 데이터가 없습니다."
@@ -5572,7 +5684,7 @@ msgstr "사용 가능한 작업 데이터가 없습니다."
msgid "No output found for this job."
msgstr "이 작업에 대한 출력을 찾을 수 없습니다."
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "결과를 찾을 수 없음"
@@ -5581,20 +5693,20 @@ msgstr "결과를 찾을 수 없음"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "결과를 찾을 수 없음"
@@ -5612,22 +5724,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "{pluralizedItemName} 을/를 찾을 수 없음"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "노드 별칭"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "노드 유형"
@@ -5643,11 +5755,11 @@ msgstr "노드 유형"
msgid "None"
msgstr "없음"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "없음 (한 번 실행)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "없음 (한 번 실행)"
@@ -5670,7 +5782,7 @@ msgstr "구성되지 않음"
msgid "Not configured for inventory sync."
msgstr "인벤토리 동기화에 대해 구성되지 않았습니다."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5694,11 +5806,11 @@ msgstr "참고: 선택한 순서에 따라 실행 우선 순위가 설정됩니
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "참고: 이러한 인증 정보의 순서는 콘텐츠의 동기화 및 조회에 대한 우선 순위를 설정합니다. 끌어오기를 활성화하려면 하나 이상 선택합니다."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "참고: 이 필드는 원격 이름이 \"origin\"이라고 가정합니다."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5708,7 +5820,7 @@ msgid ""
"password information."
msgstr "참고: GitHub 또는 Bitbucket에 SSH 프로토콜을 사용하는 경우 SSH 키만 입력하고 사용자 이름( git 제외)을 입력하지 마십시오. SSH를 사용할 때 GitHub 및 Bitbucket은 암호 인증을 지원하지 않습니다. GIT 읽기 전용 프로토콜 (git://)은 사용자 이름 또는 암호 정보를 사용하지 않습니다."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "알림 색상"
@@ -5717,11 +5829,11 @@ msgstr "알림 색상"
msgid "Notification Template not found."
msgstr "알림 템플릿을 찾을 수 없습니다."
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "알림 템플릿"
@@ -5730,7 +5842,7 @@ msgstr "알림 템플릿"
msgid "Notification Type"
msgstr "알림 유형"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "알림 색상"
@@ -5738,7 +5850,7 @@ msgstr "알림 색상"
msgid "Notification sent successfully"
msgstr "알림이 전송되었습니다."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "알림 테스트에 실패했습니다."
@@ -5753,25 +5865,25 @@ msgstr "알림 유형"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "알림"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "11월"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5779,69 +5891,75 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "발생"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "10월"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "Off"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "On"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "실패 시"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "성공 시"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "날짜에"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "요일에"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "그룹 별로만"
@@ -5849,26 +5967,31 @@ msgstr "그룹 별로만"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "옵션 세부 정보"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
msgstr "'dev' 또는 'test'와 같이 이 인벤토리를 설명하는 선택적 레이블입니다. 레이블을 사용하여 인벤토리 및 완료된 작업을 그룹화하고 필터링할 수 있습니다."
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "'dev' 또는 'test'와 같이 이 작업 템플릿을 설명하는 선택적 레이블입니다. 레이블을 사용하여 작업 템플릿과 완료된 작업을 그룹화하고 필터링할 수 있습니다."
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "선택적으로 상태 업데이트를 웹 후크 서비스로 다시 보내는 데 사용할 인증 정보를 선택합니다."
@@ -5876,15 +5999,15 @@ msgstr "선택적으로 상태 업데이트를 웹 후크 서비스로 다시
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "옵션"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "순서"
@@ -5892,19 +6015,20 @@ msgstr "순서"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5912,19 +6036,19 @@ msgstr "순서"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5939,19 +6063,19 @@ msgstr "조직(이름)"
msgid "Organization Name"
msgstr "조직 이름"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "조직을 찾을 수 없습니다."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5966,34 +6090,39 @@ msgstr "기타 프롬프트"
msgid "Out of compliance"
msgstr "규정 준수 외"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "출력"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "덮어쓰기"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "원격 인벤토리 소스에서 로컬 그룹 및 호스트 덮어쓰기"
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "원격 인벤토리 소스에서 로컬 변수 덮어쓰기"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "변수 덮어쓰기"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "POST"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PUT"
@@ -6002,11 +6131,11 @@ msgstr "PUT"
msgid "Pagerduty"
msgstr "PagerDuty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "PagerDuty 하위 도메인"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "PagerDuty 하위 도메인"
@@ -6030,23 +6159,28 @@ msgstr "Pan right"
msgid "Pan Up"
msgstr "Pan Up"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "추가 명령줄 변경 사항을 전달합니다. 두 가지 ansible 명령행 매개변수가 있습니다."
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "플레이북에 추가 명령줄 변수를 전달합니다. ansible-playbook에 대해 -e 또는 --extra-vars 명령줄 매개 변수입니다. YAML 또는 JSON을 사용하여 키/값 쌍을 제공합니다. 예제 구문에 대한 설명서를 참조하십시오."
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr "플레이북에 추가 명령줄 변수를 전달합니다. ansible-playbook에 대해 -e 또는 --extra-vars 명령줄 매개 변수입니다. YAML 또는 JSON을 사용하여 키/값 쌍을 제공합니다. 예제 구문에 대한 설명서를 참조하십시오."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
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 "플레이북에 추가 명령줄 변수를 전달합니다. ansible-playbook에 대해 -e 또는 --extra-vars 명령줄 매개 변수입니다. YAML 또는 JSON을 사용하여 키/값 쌍을 제공합니다. 예제 구문에 대한 Ansible Tower 설명서를 참조하십시오."
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6071,8 +6205,8 @@ msgstr "지난 2주"
msgid "Past week"
msgstr "지난 주"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "보류 중"
@@ -6089,7 +6223,7 @@ msgstr "삭제 보류 중"
msgid "Perform a search to define a host filter"
msgstr "호스트 필터를 정의하여 검색을 수행"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "개인 액세스 토큰"
@@ -6098,7 +6232,7 @@ msgstr "개인 액세스 토큰"
msgid "Personal access token"
msgstr "개인 액세스 토큰"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "플레이"
@@ -6106,45 +6240,45 @@ msgstr "플레이"
msgid "Play Count"
msgstr "플레이 수"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "플레이 시작됨"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "플레이북 확인"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "플레이북 완료"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "플레이북 디렉토리"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "플레이북 실행"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "플레이북 시작됨"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6184,27 +6318,27 @@ msgstr "시작하려면 시작 버튼을 클릭하십시오."
msgid "Please enter a valid URL"
msgstr "유효한 URL을 입력하십시오."
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "값을 입력하십시오."
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "로그인하십시오"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "이 목록을 채우려면 작업을 실행하십시오."
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "1에서 31 사이의 날짜 번호를 선택하십시오."
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "인벤토리를 선택하거나 시작 시 프롬프트 옵션을 선택하십시오."
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "시작 날짜/시간 이후의 종료 날짜/시간을 선택하십시오."
@@ -6220,13 +6354,13 @@ msgstr "위의 필터를 사용하여 다른 검색을 시도하십시오."
msgid "Please wait until the topology view is populated..."
msgstr "토폴로지 보기가 채워질 때까지 기다리십시오..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Pod 사양 덮어쓰기"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "정책 유형"
@@ -6236,7 +6370,7 @@ msgstr "정책 유형"
msgid "Policy instance minimum"
msgstr "정책 인스턴스 최소"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "정책 인스턴스 백분율"
@@ -6255,12 +6389,12 @@ msgid ""
"examples."
msgstr "검색 필터를 사용하여 이 인벤토리의 호스트를 채웁니다. 예: ansible_facts__ansible_distribution:\"RedHat\". 추가 구문 및 예제를 보려면 설명서를 참조하십시오. 추가 구문 및 예를 보려면 Ansible Tower 설명서를 참조하십시오."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "포트"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "여러 명의 부모가 있을 때 이 노드를 실행하기 위한 전제 조건"
@@ -6270,10 +6404,18 @@ msgid ""
"choice per line."
msgstr "'Enter'를 눌러 더 많은 답변 선택 사항을 추가합니다. 행당 하나의 응답 선택."
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Enter를 눌러 편집합니다. ESC를 눌러 편집을 중지합니다."
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6283,9 +6425,9 @@ msgstr "미리보기"
msgid "Private key passphrase"
msgstr "개인 키 암호"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "권한 에스컬레이션"
@@ -6293,40 +6435,44 @@ msgstr "권한 에스컬레이션"
msgid "Privilege escalation password"
msgstr "권한 에스컬레이션 암호"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "프로젝트"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "프로젝트 기본 경로"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "프로젝트 상태"
+#~ msgid "Project Status"
+#~ msgstr "프로젝트 상태"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "프로젝트 동기화"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "프로젝트 동기화 오류"
@@ -6334,11 +6480,19 @@ msgstr "프로젝트 동기화 오류"
msgid "Project Update"
msgstr "프로젝트 업데이트"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "프로젝트가 성공적으로 복사됨"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "프로젝트를 찾을 수 없음"
@@ -6348,12 +6502,12 @@ msgstr "프로젝트 동기화 실패"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6364,18 +6518,18 @@ msgstr "프로젝트"
msgid "Promote Child Groups and Hosts"
msgstr "하위 그룹 및 호스트 승격"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "프롬프트"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "프롬프트 덮어쓰기"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "시작 시 프롬프트"
@@ -6383,13 +6537,12 @@ msgstr "시작 시 프롬프트"
msgid "Prompt | {0}"
msgstr "프롬프트 | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "프롬프트 값"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6397,7 +6550,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr "플레이북에 의해 관리 또는 영향을 받는 호스트 목록을 추가로 제한하기 위해 호스트 패턴을 제공합니다. 여러 패턴이 허용됩니다. 패턴에 대한 자세한 정보와 예제는 Ansible 문서를 참조하십시오."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6405,11 +6558,16 @@ msgid ""
"information and examples on patterns."
msgstr "플레이북에 의해 관리 또는 영향을 받는 호스트 목록을 추가로 제한하기 위해 호스트 패턴을 제공합니다. 여러 패턴이 허용됩니다. 패턴에 대한 자세한 정보와 예제는 Ansible 문서를 참조하십시오."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "이 필드에 값을 제공하거나 시작 시 프롬프트 실행 옵션을 선택합니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6424,32 +6582,40 @@ msgid ""
msgstr "아래에서 Red Hat 또는 Red Hat Satellite 인증 정보를 제공하고 사용 가능한 서브스크립션 목록에서 선택할 수 있습니다. 사용하는 인증 정보는 향후 갱신 또는 확장 서브스크립션을 검색하는데 사용할 수 있도록 저장됩니다."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Ansible Automation Platform의 Insights를 사용할 수 있도록 Red Hat 또는 Red Hat Satellite 인증 정보를 제공합니다."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Ansible Automation Platform의 Insights를 사용할 수 있도록 Red Hat 또는 Red Hat Satellite 인증 정보를 제공합니다."
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "콜백 URL 프로비저닝"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "프로비저닝 호출 세부 정보"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "프로비저닝 콜백"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Pull"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "질문"
@@ -6461,14 +6627,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "RADIUS 설정"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "읽기"
@@ -6488,9 +6654,9 @@ msgstr "최근 템플릿"
msgid "Recent Templates list tab"
msgstr "최근 템플릿 목록 탭"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "최근 작업"
@@ -6509,6 +6675,7 @@ msgstr "Red Hat Ansible Automation Platform"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6530,13 +6697,14 @@ msgstr "Red Hat 서브스크립션 매니페스트"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "URI 리디렉션"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "URI 리디렉션"
+#~ msgid "Redirect uris"
+#~ msgstr "URI 리디렉션"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6546,15 +6714,20 @@ msgstr "대시보드로 리디렉션"
msgid "Redirecting to subscription detail"
msgstr "서브스크립션 세부 정보로 리디렉션"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "참조"
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "구성 파일에 대한 자세한 내용은 Ansible 설명서를 참조하십시오."
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr "구성 파일에 대한 자세한 내용은 Ansible 설명서를 참조하십시오."
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6572,25 +6745,26 @@ msgstr "버전 새로 고침"
msgid "Refresh project revision"
msgstr "프로젝트 버전 새로 고침"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "리전"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "레지스트리 인증 정보"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "관련 그룹"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "관련 키"
@@ -6605,8 +6779,8 @@ msgstr "관련 검색 자동 완성"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "다시 시작"
@@ -6637,12 +6811,13 @@ msgstr "호스트 매개변수를 사용하여 다시 시작"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "원격 아카이브"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6661,11 +6836,11 @@ msgstr "링크 제거"
msgid "Remove Node {nodeName}"
msgstr "{nodeName} 노드 제거"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "업데이트를 수행하기 전에 로컬 수정 사항을 제거합니다."
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "이 키를 사용하여 다른 검색을 활성화하려면 ansible 팩트와 관련된 현재 검색을 제거합니다."
@@ -6681,15 +6856,19 @@ msgstr "{0} 칩 제거"
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.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "반복 빈도"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "교체"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "필드를 새 값으로 교체"
@@ -6699,7 +6878,7 @@ msgid "Request subscription"
msgstr "서브스크립션 요청"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "필수 항목"
@@ -6709,7 +6888,7 @@ msgid "Reset zoom"
msgstr "확대/축소 재설정"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6720,7 +6899,7 @@ msgid "Resource deleted"
msgstr "삭제된 리소스"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "리소스"
@@ -6732,18 +6911,18 @@ msgstr "이 템플릿에서 리소스가 누락되어 있습니다."
msgid "Restore initial value."
msgstr "초기 값을 복원합니다."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "호스트 변수의 지정된 dict에서 활성화된 상태를 검색합니다. 활성화된 변수는 점 표기법을 사용하여 지정할 수 있습니다(예: 'foo.bar')."
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "돌아가기"
@@ -6763,7 +6942,7 @@ msgstr "이 필터와 다른 필터를 충족하는 결과를 반환합니다.
msgid "Returns results that satisfy this one or any other filters."
msgstr "이 필터를 하나 또는 다른 필터를 충족하는 결과를 반환합니다."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6778,7 +6957,7 @@ msgstr "모두 되돌리기"
msgid "Revert all to default"
msgstr "모두 기본값으로 되돌립니다."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "이전에 저장된 값으로 필드를 되돌리기"
@@ -6790,13 +6969,13 @@ msgstr "설정 복원"
msgid "Revert to factory default."
msgstr "팩토리 기본 설정으로 되돌립니다."
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "버전"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "버전 #"
@@ -6816,56 +6995,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "역할"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "역할"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "실행"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "명령 실행"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "인스턴스에서 상태 점검을 실행합니다."
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "애드혹 명령 실행"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "명령 실행"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "모두 실행"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "실행 빈도"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "실행"
@@ -6873,25 +7059,30 @@ msgstr "실행"
msgid "Run type"
msgstr "실행 유형"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "실행 중"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "Handlers 실행"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "작업 실행"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "실행 중인 작업"
@@ -6917,7 +7108,7 @@ msgstr "SOCIAL"
msgid "SSH password"
msgstr "SSH 암호"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "SSL 연결"
@@ -6927,36 +7118,36 @@ msgid "START"
msgstr "시작"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "상태:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "토요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "토요일"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6982,12 +7173,16 @@ msgstr "성공적으로 저장했습니다!"
msgid "Schedule"
msgstr "일정"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "일정 세부 정보"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "일정 세부 정보"
@@ -6999,7 +7194,7 @@ msgstr "일정이 활성화됨"
msgid "Schedule is inactive"
msgstr "일정이 비활성 상태입니다"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "일정에 규칙이 누락되어 있습니다"
@@ -7010,30 +7205,34 @@ msgstr "스케줄을 찾을 수 없습니다."
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "일정"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "범위"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "먼저 스크롤"
@@ -7051,7 +7250,7 @@ msgid "Scroll previous"
msgstr "이전 스크롤"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "검색"
@@ -7059,12 +7258,12 @@ msgstr "검색"
msgid "Search is disabled while the job is running"
msgstr "작업이 실행되는 동안 검색이 비활성화됩니다."
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "검색 제출 버튼"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "검색 텍스트 입력"
@@ -7072,24 +7271,24 @@ msgstr "검색 텍스트 입력"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "ansible_facts로 검색하는 경우 특수 구문이 필요합니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "초"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "초"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "왼쪽의 오류 보기"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7105,7 +7304,7 @@ msgstr "인증 정보 유형 선택"
msgid "Select Groups"
msgstr "그룹 선택"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "호스트 선택"
@@ -7113,7 +7312,7 @@ msgstr "호스트 선택"
msgid "Select Input"
msgstr "입력 선택"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "인스턴스 선택"
@@ -7121,7 +7320,7 @@ msgstr "인스턴스 선택"
msgid "Select Items"
msgstr "항목 선택"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "목록에서 항목 선택"
@@ -7129,7 +7328,7 @@ msgstr "목록에서 항목 선택"
msgid "Select Labels"
msgstr "레이블 선택"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "적용할 역할 선택"
@@ -7141,25 +7340,27 @@ msgstr "팀 선택"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "JSON 형식의 서비스 계정 키를 선택하여 다음 필드를 자동으로 채웁니다."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "노드 유형 선택"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "리소스 유형 선택"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "작업 템플릿에 대한 분기를 선택합니다. 이 분기는 분기를 요청하는 모든 작업 템플릿 노드에 적용됩니다."
+#~ 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.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js: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.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "워크플로의 분기를 선택합니다. 이 분기는 분기를 요청하는 모든 작업 템플릿 노드에 적용됩니다."
@@ -7175,16 +7376,16 @@ msgstr "취소할 작업 선택"
msgid "Select a metric"
msgstr "메트릭 선택"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "모듈 선택"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Playbook 선택"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "실행 환경을 편집하기 전에 프로젝트를 선택합니다."
@@ -7193,8 +7394,8 @@ msgid "Select a question to delete"
msgstr "삭제할 질문을 선택"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "승인할 행을 선택"
+#~ msgid "Select a row to approve"
+#~ msgstr "승인할 행을 선택"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7202,10 +7403,10 @@ msgid "Select a row to delete"
msgstr "삭제할 행 선택"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "거부할 행 선택"
+#~ msgid "Select a row to deny"
+#~ msgstr "거부할 행 선택"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "연결할 행을 선택"
@@ -7214,49 +7415,51 @@ msgid "Select a subscription"
msgstr "서브스크립션 선택"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "이 필드의 값을 선택"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Webhook 서비스 선택"
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "모두 선택"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "활동 유형 선택"
@@ -7272,7 +7475,7 @@ msgstr "차트를 표시할 인스턴스 및 메트릭을 선택합니다."
msgid "Select an instance to run a health check."
msgstr "상태 점검을 실행할 인스턴스를 선택합니다."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "워크플로에 대한 인벤토리를 선택합니다. 이 인벤토리는 인벤토리를 요청하는 모든 워크플로 노드에 적용됩니다."
@@ -7280,30 +7483,39 @@ msgstr "워크플로에 대한 인벤토리를 선택합니다. 이 인벤토리
msgid "Select an option"
msgstr "옵션 선택"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "기본 실행 환경을 편집하기 전에 조직을 선택합니다."
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "이 작업이 실행될 노드에 액세스하기 위한 인증 정보를 선택합니다. 각 유형에 대해 하나의 인증 정보만 선택할 수 있습니다. 시스템 인증 정보 (SSH)의 경우 인증 정보를 선택하지 않으면 런타임에 시스템 인증 정보를 선택해야합니다. 인증 정보를 선택하고 \"시작 시 프롬프트\"를 선택하면 선택한 인증 정보를 런타임에 업데이트할 수 있는 기본값이 됩니다."
+#~ msgid ""
+#~ "Select credentials for accessing 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 "이 작업이 실행될 노드에 액세스하기 위한 인증 정보를 선택합니다. 각 유형에 대해 하나의 인증 정보만 선택할 수 있습니다. 시스템 인증 정보 (SSH)의 경우 인증 정보를 선택하지 않으면 런타임에 시스템 인증 정보를 선택해야합니다. 인증 정보를 선택하고 \"시작 시 프롬프트\"를 선택하면 선택한 인증 정보를 런타임에 업데이트할 수 있는 기본값이 됩니다."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "목록에서 항목 선택"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7319,13 +7531,13 @@ msgstr "옵션 선택"
msgid "Select period"
msgstr "기간 선택"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "적용할 역할 선택"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "소스 경로 선택"
@@ -7347,75 +7559,90 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "이 인벤토리의 인스턴스 그룹을 선택하여 실행할 인스턴스를 선택합니다."
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "이 작업 템플릿의 인스턴스 그룹을 선택합니다."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr "이 작업 템플릿의 인스턴스 그룹을 선택합니다."
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "이 조직에서 실행할 인스턴스 그룹을 선택합니다."
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "이 토큰이 속한 애플리케이션을 선택하거나 이 필드를 비워 개인 액세스 토큰을 만듭니다."
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "이 토큰이 속한 애플리케이션을 선택하거나 이 필드를 비워 개인 액세스 토큰을 만듭니다."
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "원격 호스트에 액세스하여 명령을 실행할 때 사용할 인증 정보를 선택합니다. Ansible에서 원격 호스트에 로그인해야 하는 사용자 이름 및 SSH 키 또는 암호가 포함된 인증 정보를 선택합니다."
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "이 작업 템플릿의 실행 환경을 선택합니다."
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
msgstr "이 작업을 관리할 호스트가 포함된 인벤토리를 선택합니다."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "이 소스에서 동기화할 인벤토리 파일을 선택합니다. 드롭다운에서 선택하거나 입력 란에 파일을 입력할 수 있습니다."
+#~ 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.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "이 호스트가 속할 인벤토리를 선택합니다."
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "이 작업에서 실행할 플레이북을 선택합니다."
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "이 작업을 실행할 플레이북을 포함하는 프로젝트를 선택합니다."
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr "이 작업을 실행할 플레이북을 포함하는 프로젝트를 선택합니다."
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "사용할 Ansible Automation Platform 서브스크립션을 선택합니다."
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "{0} 선택"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7437,7 +7664,7 @@ msgstr "{0} 선택"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "선택됨"
@@ -7448,20 +7675,20 @@ msgstr "선택됨"
msgid "Selected Category"
msgstr "선택한 카테고리"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "선택한 날짜 범위는 하나 이상의 일정이 포함되어 있어야 합니다."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "보낸 사람 이메일"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "보낸 사람 이메일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "9월"
@@ -7470,7 +7697,7 @@ msgid "Service account JSON file"
msgstr "서비스 계정 JSON 파일"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "이 필드의 값을 설정합니다."
@@ -7482,7 +7709,7 @@ msgstr "유지해야 하는 데이터 일 수를 설정합니다."
msgid "Set preferences for data collection, logos, and logins"
msgstr "데이터 수집, 로고 및 로그인에 대한 기본 설정"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "소스 경로 설정"
@@ -7490,7 +7717,7 @@ msgstr "소스 경로 설정"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "인스턴스 활성화 또는 비활성화를 설정합니다. 비활성화된 경우 작업이 이 인스턴스에 할당되지 않습니다."
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "클라이언트 장치의 보안에 따라 공개 또는 기밀로 설정합니다."
@@ -7498,7 +7725,7 @@ msgstr "클라이언트 장치의 보안에 따라 공개 또는 기밀로 설
msgid "Set type"
msgstr "설정 유형"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "관련 검색 필드 퍼지 검색에 대해 설정 유형 비활성화"
@@ -7528,8 +7755,8 @@ msgstr "설정 이름"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "설정"
@@ -7538,17 +7765,17 @@ msgstr "설정"
msgid "Show"
msgstr "표시"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "변경 사항 표시"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "변경 사항 표시"
@@ -7565,72 +7792,72 @@ msgstr "더 적은 수를 표시"
msgid "Show only root groups"
msgstr "root 그룹만 표시"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Azure AD로 로그인"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "GitHub로 로그인"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "GitHub Enterprise로 로그인"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "GitHub Enterprise Organizations으로 로그인"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "GitHub Enterprise Teams로 로그인"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "GitHub 조직으로 로그인"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "GitHub Teams로 로그인"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Google로 로그인"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "SAML으로 로그인"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "SAML {samlIDP}으로 로그인"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "간단한 키 선택"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "태그 건너뛰기"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "건너뛰기 태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 건너뛰려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 문서를 참조하십시오."
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr "건너뛰기 태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 건너뛰려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 문서를 참조하십시오."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7638,11 +7865,16 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "건너뛰기 태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 건너뛰려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 Ansible Tower 설명서를 참조하십시오."
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "건너뜀"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "건너뜀'"
@@ -7664,15 +7896,15 @@ msgid "Smart Inventory not found."
msgstr "스마트 인벤토리를 찾을 수 없습니다."
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "스마트 호스트 필터"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "스마트 인벤토리"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "이전 단계 중 일부에는 오류가 있습니다."
@@ -7694,51 +7926,53 @@ msgid "Sort"
msgstr "분류"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "소스"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "소스 제어 분기"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "소스 제어 분기/태그/커밋"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "소스 제어 인증 정보"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "소스 제어 참조"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "소스 제어 버전"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "소스 제어 유형"
@@ -7746,34 +7980,34 @@ msgstr "소스 제어 유형"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "소스 제어 URL"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "소스 제어 업데이트"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "소스 전화 번호"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "소스 변수"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "소스 워크플로 작업"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "소스 제어 분기"
@@ -7781,12 +8015,12 @@ msgstr "소스 제어 분기"
msgid "Source details"
msgstr "소스 세부 정보"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "소스 전화 번호"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "소스 변수"
@@ -7794,46 +8028,46 @@ msgstr "소스 변수"
msgid "Sourced from a project"
msgstr "프로젝트에서 소싱"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "소스"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr "HTTP 헤더를 JSON 형식으로 지정합니다. 예를 들어 Ansible Tower 설명서를 참조하십시오."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr "알림 색상을 지정합니다. 허용되는 색상은 16진수 색상 코드 (예: #3af 또는 #789abc)입니다."
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "토큰 액세스 범위를 지정합니다."
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "토큰 액세스 범위를 지정합니다."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "이 노드를 실행해야 하는 조건을 지정합니다."
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "표준 오류"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "표준 아웃"
+#~ msgid "Standard Out"
+#~ msgstr "표준 아웃"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "표준 오류 탭"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "표준 아웃 탭"
+#~ msgid "Standard out tab"
+#~ msgstr "표준 아웃 탭"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7842,7 +8076,7 @@ msgstr "표준 아웃 탭"
msgid "Start"
msgstr "시작"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "시작 시간"
@@ -7851,16 +8085,16 @@ msgstr "시작 시간"
msgid "Start date"
msgstr "시작일"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "시작일/시간"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "시작 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "메시지 본문 시작"
@@ -7877,27 +8111,27 @@ msgstr "동기화 소스 시작"
msgid "Start time"
msgstr "시작 시간"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "시작됨"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -7905,9 +8139,9 @@ msgstr "시작됨"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "상태"
@@ -7925,7 +8159,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "제출"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7973,6 +8207,7 @@ msgstr "서브스크립션 테이블"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -7980,22 +8215,22 @@ msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "성공"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "성공 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "성공 메시지 본문"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8005,24 +8240,24 @@ msgstr "성공"
msgid "Successful jobs"
msgstr "성공적인 작업"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "클립보드에 성공적으로 복사되었습니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "일요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "이벤트"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "설문 조사"
@@ -8034,7 +8269,7 @@ msgstr "설문 조사 비활성화"
msgid "Survey Enabled"
msgstr "설문 조사 활성화"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "설문 조사 질문 순서"
@@ -8042,20 +8277,20 @@ msgstr "설문 조사 질문 순서"
msgid "Survey Toggle"
msgstr "설문조사 토글"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "설문 조사 프리뷰 모달"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "동기화"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "동기화 프로젝트"
@@ -8069,11 +8304,11 @@ msgstr "모두 동기화"
msgid "Sync all sources"
msgstr "모든 소스 동기화"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "동기화 오류"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "버전의 동기화"
@@ -8101,7 +8336,7 @@ msgstr "시스템 관리자"
msgid "System Auditor"
msgstr "시스템 감사"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "시스템 경고"
@@ -8119,20 +8354,20 @@ msgid "TACACS+ settings"
msgstr "TACACS + 설정"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "탭"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 실행하려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 문서를 참조하십시오."
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr "태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 실행하려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 문서를 참조하십시오."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8140,24 +8375,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "태그는 대용량 플레이북이 있고 플레이 또는 작업의 특정 부분을 실행하려는 경우 유용합니다. 쉼표를 사용하여 여러 태그를 구분합니다. 태그 사용에 대한 자세한 내용은 Ansible Tower 설명서를 참조하십시오."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "주석 태그"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "주석 태그(선택 사항)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "대상 URL"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "작업"
@@ -8165,7 +8405,7 @@ msgstr "작업"
msgid "Task Count"
msgstr "작업 수"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "호스트 시작됨"
@@ -8182,24 +8422,24 @@ msgstr "팀"
msgid "Team Roles"
msgstr "팀 역할"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "팀을 찾을 수 없음"
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8207,27 +8447,27 @@ msgstr "팀을 찾을 수 없음"
msgid "Teams"
msgstr "팀"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "템플릿"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "템플릿이 성공적으로 복사됨"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "템플릿을 찾을 수 없습니다."
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8236,7 +8476,7 @@ msgstr "템플릿"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "테스트"
@@ -8257,11 +8497,11 @@ msgid "Test passed"
msgstr "통과된 테스트"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "텍스트"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "텍스트 영역"
@@ -8269,19 +8509,23 @@ msgstr "텍스트 영역"
msgid "Textarea"
msgstr "텍스트 영역"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "이 값을 찾을 수 없습니다. 유효한 값을 입력하거나 선택하십시오."
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "The"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "사용자가 이 애플리케이션의 토큰을 얻는 데 사용해야 하는 Grant 유형"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8289,45 +8533,89 @@ msgid ""
msgstr "이메일 알림에서 호스트에 도달하려는 시도를 중지하고 시간 초과되기 전 까지의 시간(초)입니다. 범위는 1초에서 120초 사이입니다."
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "작업이 취소되기 전에 실행할 시간(초)입니다. 작업 제한 시간이 없는 경우 기본값은 0입니다."
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr "작업이 취소되기 전에 실행할 시간(초)입니다. 작업 제한 시간이 없는 경우 기본값은 0입니다."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
msgstr "Grafana 서버의 기본 URL - /api/annotations 엔드포인트가 기본 Grafana URL에 자동으로 추가됩니다."
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "이 조직 내의 작업에 사용할 실행 환경입니다. 실행 환경이 프로젝트, 작업 템플릿 또는 워크플로 수준에서 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다."
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "이 프로젝트를 사용하는 작업에 사용할 실행 환경입니다. 작업 템플릿 또는 워크플로 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다."
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "이 작업 템플릿을 시작할 때 사용할 실행 환경입니다. 해결된 실행 환경은 이 작업 템플릿에 다른 실행 환경을 명시적으로 할당하여 재정의할 수 있습니다."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr "이 작업 템플릿을 시작할 때 사용할 실행 환경입니다. 해결된 실행 환경은 이 작업 템플릿에 다른 실행 환경을 명시적으로 할당하여 재정의할 수 있습니다."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "모든 참조에 대한 첫 번째 참조를 가져옵니다. Github pull 요청 번호 62에 대한 두 번째 참조를 가져옵니다. 이 예제에서 분기는 \"pull/62/head\"여야 합니다."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "컨테이너 레지스트리, 이미지 이름, 버전 태그를 포함한 전체 이미지 위치입니다."
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8335,25 +8623,36 @@ msgid ""
"documentation for more details."
msgstr "이 조직에서 관리할 수 있는 최대 호스트 수입니다. 기본값은 0이며 이는 제한이 없음을 의미합니다. 자세한 내용은 Ansible 설명서를 참조하십시오."
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "플레이북을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 비어 있는 값 또는 1보다 작은 값은 Ansible 기본값(일반적으로 5)을 사용합니다. 기본 포크 수는 다음과 같이 변경합니다."
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 "플레이북을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 비어 있는 값 또는 1보다 작은 값은 Ansible 기본값(일반적으로 5)을 사용합니다. 기본 포크 수는 다음과 같이 변경합니다."
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "플레이북을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 값을 입력하지 않으면 ansible 구성 파일에서 기본값을 사용합니다. 자세한 정보를 참조하십시오."
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "요청하신 페이지를 찾을 수 없습니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "인벤토리의 호스트를 대상으로 지정하는 데 사용되는 패턴입니다. 필드를 비워두면 all 및 *는 인벤토리의 모든 호스트를 대상으로 합니다. Ansible의 호스트 패턴에 대한 자세한 정보를 찾을 수 있습니다."
@@ -8361,7 +8660,7 @@ msgstr "인벤토리의 호스트를 대상으로 지정하는 데 사용되는
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "현재 프로젝트가 동기화되고 있으며 동기화가 완료된 후 리버전을 사용할 수 있습니다."
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "버전을 사용할 수 있으려면 프로젝트를 동기화해야 합니다."
@@ -8379,7 +8678,7 @@ msgstr "이 노드와 연결된 리소스가 삭제되었습니다."
msgid "The search filter did not produce any results…"
msgstr "검색 필터에서 결과를 생성하지 않았습니다."
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8400,7 +8699,7 @@ msgstr "{project_base_dir}에 사용 가능한 플레이북 디렉터리가 없
msgid "There must be a value in at least one input"
msgstr "하나의 입력에 최소한 하나의 값이 있어야 합니다."
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "로그인하는 데 문제가 있었습니다. 다시 시도하십시오."
@@ -8412,31 +8711,36 @@ msgstr "이 콘텐츠를 로드하는 동안 오류가 발생했습니다. 페
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "파일을 구문 분석하는 동안 오류가 발생했습니다. 파일 형식을 확인하고 다시 시도하십시오."
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "워크플로를 저장하는 동안 오류가 발생했습니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "다음은 {brandName}에서 명령 실행을 지원하는 모듈입니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "이는 표준 실행 명령을 실행하기 위해 지원되는 상세 수준입니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "이러한 인수는 지정된 모듈과 함께 사용됩니다."
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "이러한 인수는 지정된 모듈과 함께 사용됩니다. {0} 에 대한 정보를 클릭하면 확인할 수 있습니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "세 번째"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "이 프로젝트를 업데이트해야 합니다."
@@ -8458,15 +8762,15 @@ msgstr "이 작업은 {0} 에서 다음 역할의 연결을 해제합니다."
msgid "This action will disassociate the following:"
msgstr "이 작업은 다음과 같이 연결을 해제합니다."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "현재 이 컨테이너 그룹에 다른 리소스가 있습니다. 삭제하시겠습니까?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "현재 다른 리소스에서 이 인증 정보를 사용하고 있습니다. 삭제하시겠습니까?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "현재 일부 인증 정보에서 이 인증 정보 유형을 사용하고 있으며 삭제할 수 없습니다."
@@ -8474,8 +8778,15 @@ msgstr "현재 일부 인증 정보에서 이 인증 정보 유형을 사용하
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "이 데이터는 향후 소프트웨어 릴리스를 개선하고 Ansible Automation Platform에 Insights를 제공하는 데 사용됩니다."
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr "이 데이터는 향후 소프트웨어 릴리스를 개선하고 Ansible Automation Platform에 Insights를 제공하는 데 사용됩니다."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
@@ -8484,7 +8795,7 @@ msgid ""
"streamline customer experience and success."
msgstr "이 데이터는 향후 Tower 소프트웨어의 릴리스를 개선하고 고객 경험 및 성공을 단순화하는 데 사용됩니다."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "현재 다른 리소스에서 이 실행 환경이 사용되고 있습니다. 삭제하시겠습니까?"
@@ -8493,17 +8804,17 @@ msgstr "현재 다른 리소스에서 이 실행 환경이 사용되고 있습
msgid "This feature is deprecated and will be removed in a future release."
msgstr "이 기능은 더 이상 사용되지 않으며 향후 릴리스에서 제거될 예정입니다."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "이 필드는 비워 둘 수 없습니다."
+#~ msgid "This field is must not be blank"
+#~ msgstr "이 필드는 비워 둘 수 없습니다."
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "이 필드는 비워 둘 수 없습니다."
+#~ msgid "This field is must not be blank."
+#~ msgstr "이 필드는 비워 둘 수 없습니다."
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8534,7 +8845,7 @@ msgstr "이 필드는 {max}보다 작은값을 가진 숫자여야 합니다."
msgid "This field must be a regular expression"
msgstr "이 필드는 정규식이어야 합니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "이 필드는 정수여야 합니다."
@@ -8547,12 +8858,13 @@ msgstr "이 필드는 {0} 자 이상이어야 합니다."
msgid "This field must be at least {min} characters"
msgstr "이 필드는 {min} 자 이상이어야 합니다."
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "이 필드는 0보다 커야 합니다."
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8560,6 +8872,10 @@ msgstr "이 필드는 0보다 커야 합니다."
msgid "This field must not be blank"
msgstr "이 필드는 비워 둘 수 없습니다."
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "이 필드에는 공백을 포함할 수 없습니다."
@@ -8576,7 +8892,7 @@ msgstr "이 필드는 {max} 자를 초과할 수 없습니다."
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "이 필드는 지정된 인증 정보를 사용하여 외부 시크릿 관리 시스템에서 검색됩니다."
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "이 인스턴스 그룹은 현재 다른 리소스에 의해 있습니다. 삭제하시겠습니까?"
@@ -8584,15 +8900,15 @@ msgstr "이 인스턴스 그룹은 현재 다른 리소스에 의해 있습니
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "이 인벤토리는 이 워크플로우({0}) 내의 모든 워크플로 노드에 적용되며, 인벤토리를 요청하는 메시지를 표시합니다."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "이 인벤토리는 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
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.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "이는 클라이언트 시크릿이 표시되는 유일한 시간입니다."
@@ -8600,19 +8916,19 @@ msgstr "이는 클라이언트 시크릿이 표시되는 유일한 시간입니
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "토큰 값과 연결된 새로 고침 토큰 값이 표시되는 유일한 시간입니다."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "이 작업 템플릿은 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "이 조직은 현재 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "이 프로젝트는 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "이 프로젝트는 현재 동기화 상태에 있으며 동기화 프로세스가 완료될 때까지 클릭할 수 없습니다."
@@ -8632,6 +8948,18 @@ msgstr "이 단계에는 오류가 포함되어 있습니다."
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "이 값은 이전에 입력한 암호와 일치하지 않습니다. 암호를 확인하십시오."
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8642,27 +8970,27 @@ msgstr "이렇게 하면 이 페이지의 모든 구성 값을 해당 팩토리
msgid "This workflow does not have any nodes configured."
msgstr "이 워크플로에는 노드가 구성되어 있지 않습니다."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
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.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "목요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "목요일"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "시간"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8672,7 +9000,7 @@ msgid ""
"performed."
msgstr "프로젝트가 최신 상태인 것으로 간주하는데 걸리는 시간(초)입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 프로젝트 업데이트의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 최신 상태로 간주되지 않으며 새 프로젝트 업데이트가 수행됩니다."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8681,24 +9009,24 @@ msgid ""
"inventory sync will be performed."
msgstr "인벤토리 동기화가 최신 상태인 것으로 간주하는데 걸리는 시간(초)입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 동기화의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 최신 상태로 간주되지 않으며 새 인벤토리 동기화가 수행됩니다."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "시간 초과"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "시간 초과"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "시간 제한 (분)"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "시간 제한 (초)"
@@ -8706,11 +9034,11 @@ msgstr "시간 제한 (초)"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "ansible 팩트를 사용하여 스마트 인벤토리를 생성하려면 스마트 인벤토리 화면으로 이동합니다."
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "설문조사 질문을 재정렬하려면 원하는 위치에 끌어다 놓습니다."
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "범례 전환"
@@ -8718,12 +9046,12 @@ msgstr "범례 전환"
msgid "Toggle Password"
msgstr "암호 전환"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "툴 전환"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "호스트 전환"
@@ -8762,7 +9090,7 @@ msgstr "일정 전환"
msgid "Toggle tools"
msgstr "툴 전환"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "토큰"
@@ -8776,11 +9104,11 @@ msgstr "토큰 정보"
msgid "Token not found."
msgstr "토큰을 찾을 수 없습니다."
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8791,37 +9119,42 @@ msgid "Tools"
msgstr "툴"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "상단 페이지 번호 매기기"
+#~ msgid "Top Pagination"
+#~ msgstr "상단 페이지 번호 매기기"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "토폴로지 보기"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "총 작업"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "총 노드"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "총 작업"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "하위 모듈 추적"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "분기에서 하위 모듈의 최신 커밋 추적"
@@ -8831,23 +9164,23 @@ msgid "Trial"
msgstr "평가판"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "True"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "화요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "화요일"
@@ -8856,13 +9189,13 @@ msgstr "화요일"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -8870,13 +9203,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -8884,15 +9217,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -8908,7 +9241,7 @@ msgstr "유형"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "유형 세부 정보"
@@ -8926,11 +9259,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "호스트에서 인벤토리를 변경할 수 없음"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "사용할 수 없음"
@@ -8948,7 +9285,7 @@ msgstr "팔로우 취소"
msgid "Unlimited"
msgstr "무제한"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8970,28 +9307,28 @@ msgstr "인식되지 않는 요일 문자열"
msgid "Unsaved changes modal"
msgstr "저장되지 않은 변경 사항 모달"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "시작 시 버전 업데이트"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "시작 시 업데이트"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "프로젝트 업데이트 시 업데이트"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "업데이트 옵션"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "작업 시작 시 버전 업데이트"
@@ -8999,7 +9336,7 @@ msgstr "작업 시작 시 버전 업데이트"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "{brandName}의 작업 관련 설정 업데이트"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Webhook 키 업데이트"
@@ -9016,12 +9353,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "서브스크립션이 포함된 Red Hat 서브스크립션 매니페스트를 업로드합니다. 서브스크립션 매니페스트를 생성하려면 Red Hat 고객 포털에서 <0>서브스크립션 할당0>으로 이동하십시오."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "SSL 사용"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "TLS 사용"
@@ -9032,21 +9369,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr "사용자 지정 메시지를 사용하여 작업이 시작, 성공 또는 실패할 때 전송된 알림 내용을 변경합니다. 작업에 대한 정보에 액세스하려면 중괄호를 사용합니다."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "사용된 용량"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "사용된 용량"
@@ -9085,34 +9443,39 @@ msgstr "사용자 분석"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "사용자 및 Insights 분석"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "사용자 및 Insights 분석"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "사용자 세부 정보"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "사용자를 찾을 수 없음"
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "사용자 토큰"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9127,11 +9490,11 @@ msgstr "사용자 이름"
msgid "Username / password"
msgstr "사용자 이름 / 암호"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9143,35 +9506,44 @@ msgstr "사용자"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "변수"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "프롬프트 변수"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Vault 암호"
@@ -9180,21 +9552,21 @@ msgstr "Vault 암호"
msgid "Vault password | {credId}"
msgstr "Vault 암호 | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "상세 정보"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "상세 정보"
@@ -9206,8 +9578,8 @@ msgstr "버전"
msgid "View Azure AD settings"
msgstr "Azure AD 설정 보기"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "인증 정보 세부 정보보기"
@@ -9223,15 +9595,15 @@ msgstr "GitHub 설정 보기"
msgid "View Google OAuth 2.0 settings"
msgstr "Google OAuth 2 설정 보기"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "호스트 세부 정보 보기"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "인스턴스 세부 정보 보기"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9245,11 +9617,11 @@ msgstr "인벤토리 그룹 보기"
msgid "View Inventory Host Details"
msgstr "인벤토리 호스트 세부 정보 보기"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "<0>www.json.org0>에서 JSON 예제 보기"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "작업 세부 정보보기"
@@ -9273,11 +9645,11 @@ msgstr "기타 인증 설정 보기"
msgid "View Miscellaneous System settings"
msgstr "기타 시스템 설정 보기"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "조직 세부 정보 보기"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "프로젝트 세부 정보보기"
@@ -9298,8 +9670,8 @@ msgstr "일정 보기"
msgid "View Settings"
msgstr "설정 보기"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "설문 조사보기"
@@ -9307,12 +9679,12 @@ msgstr "설문 조사보기"
msgid "View TACACS+ settings"
msgstr "TACACS + 설정 보기"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "팀 세부 정보 보기"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "템플릿 세부 정보 보기"
@@ -9320,7 +9692,7 @@ msgstr "템플릿 세부 정보 보기"
msgid "View Tokens"
msgstr "토큰 보기"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "사용자 세부 정보보기"
@@ -9328,11 +9700,11 @@ msgstr "사용자 세부 정보보기"
msgid "View User Interface settings"
msgstr "사용자 인터페이스 설정 보기"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "워크플로우 승인 세부 정보 보기"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "<0>docs.ansible.com0>에서 YAML 예제 보기"
@@ -9341,15 +9713,15 @@ msgstr "<0>docs.ansible.com0>에서 YAML 예제 보기"
msgid "View activity stream"
msgstr "활동 스트림 보기"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "모든 인증 정보 보기"
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "모든 호스트 보기"
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "모든 인벤토리 보기"
@@ -9362,7 +9734,7 @@ msgstr "모든 인벤토리 호스트 보기"
msgid "View all Jobs"
msgstr "모든 작업 보기"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "모든 작업 보기."
@@ -9371,24 +9743,24 @@ msgstr "모든 작업 보기."
msgid "View all Notification Templates."
msgstr "모든 알림 템플릿 보기."
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "모든 조직 보기."
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "모든 프로젝트 보기."
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "모든 팀 보기."
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "모든 템플릿 보기."
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "모든 사용자 보기."
@@ -9396,24 +9768,24 @@ msgstr "모든 사용자 보기."
msgid "View all Workflow Approvals."
msgstr "모든 워크플로우 승인 보기."
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "모든 애플리케이션 보기."
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "모든 인증 정보 유형 보기"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "모든 실행 환경 보기"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "모든 인스턴스 그룹 보기"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "모든 관리 작업 보기"
@@ -9451,13 +9823,13 @@ msgid "View smart inventory host details"
msgstr "스마트 인벤토리 호스트 세부 정보 보기"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "보기"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "시각화 도구"
@@ -9465,8 +9837,8 @@ msgstr "시각화 도구"
msgid "WARNING:"
msgstr "경고:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "대기 중"
@@ -9476,7 +9848,7 @@ msgid "Waiting for job output…"
msgstr "작업 출력을 기다리는 중.."
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "경고"
@@ -9498,80 +9870,90 @@ msgstr "이 계정과 연결된 서브스크립션을 찾을 수 없습니다."
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Webhook 인증 정보"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Webhook 인증 정보"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Webhook 키"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Webhook 서비스"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Webhook 세부 정보"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Webhook 서비스는 이 URL에 대한 POST 요청을 작성하고 이 워크플로 작업 템플릿을 사용하여 작업을 시작할 수 있습니다."
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Webhook 서비스는 이를 공유 시크릿으로 사용할 수 있습니다."
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhook"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "수요일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "수요일"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "주"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "평일"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "주말"
@@ -9581,18 +9963,18 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr "Red Hat Ansible Automation Platform에 오신 것을 환영합니다! 서브스크립션을 활성화하려면 아래 단계를 완료하십시오."
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "{brandName}에 오신 것을 환영합니다!"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr "선택하지 않으면 병합이 수행되어 로컬 변수와 외부 소스에 있는 변수를 병합합니다."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9612,28 +9994,29 @@ msgid "Workflow Approval not found."
msgstr "워크플로우 승인을 찾을 수 없습니다."
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "워크플로우 승인"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "워크플로우 작업"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "워크플로우 작업 템플릿"
@@ -9657,22 +10040,22 @@ msgstr "워크플로우 링크"
msgid "Workflow Template"
msgstr "워크플로우 템플릿"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "워크플로우 승인 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "워크플로우 승인 메시지 본문"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "워크플로우 거부 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "워크플로우 거부 메시지 본문"
@@ -9682,6 +10065,10 @@ msgstr "워크플로우 거부 메시지 본문"
msgid "Workflow documentation"
msgstr "워크플로우 문서"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "워크플로우 작업 템플릿"
@@ -9694,49 +10081,49 @@ msgstr "워크플로우 링크 모달"
msgid "Workflow node view modal"
msgstr "워크플로우 노드 보기 모달"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "워크플로우 보류 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "워크플로우 보류 메시지 본문"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "워크플로우 시간 초과 메시지"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "워크플로우 시간 초과 메시지 본문"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "쓰기"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "년"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "제공됨"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "다음과 같은 워크플로우 승인에 대해 조치를 취할 수 없습니다. {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "다음과 같은 워크플로우 승인에 대해 조치를 취할 수 없습니다. {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "다음과 같은 워크플로우 승인에 대해 조치를 취할 수 없습니다. {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "다음과 같은 워크플로우 승인에 대해 조치를 취할 수 없습니다. {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9750,7 +10137,7 @@ msgstr "다음 그룹을 삭제할 권한이 없습니다. {itemsUnableToDelete}
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "{pluralizedItemName}: {itemsUnableToDelete}을 삭제할 수 있는 권한이 없습니다."
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "{itemsUnableToDisassociate}과 같이 연결을 해제할 수 있는 권한이 없습니다."
@@ -9760,7 +10147,7 @@ msgid ""
"message. For more information, refer to the"
msgstr "메시지에 사용 가능한 여러 변수를 적용할 수 있습니다. 자세한 내용은 다음을 참조하십시오."
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "세션이 만료되었습니다. 세션이 만료되기 전의 위치에서 계속하려면 로그인하십시오."
@@ -9786,18 +10173,18 @@ msgstr "확대"
msgid "Zoom out"
msgstr "축소"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "저장 시 새 Webhook 키가 생성됩니다."
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "저장 시 새 Webhook URL이 생성됩니다."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "실행 시 버전 업데이트를 클릭합니다"
@@ -9818,7 +10205,7 @@ msgstr "삭제 취소"
msgid "cancel edit login redirect"
msgstr "로그인 리디렉션 편집 취소"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "명령"
@@ -9853,38 +10240,38 @@ msgid "disassociate"
msgstr "연결 해제"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "문서"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "편집"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "암호화"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "자세한 내용"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "자세한 내용"
@@ -9892,15 +10279,24 @@ msgstr "자세한 내용"
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "여기"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "여기."
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "호스트"
@@ -9917,7 +10313,7 @@ msgstr "LDAP 사용자"
msgid "login type"
msgstr "로그인 유형"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "분"
@@ -9930,11 +10326,11 @@ msgid "node"
msgstr "노드"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "/"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "옵션"
@@ -9955,21 +10351,21 @@ msgstr "페이지당"
msgid "relaunch jobs"
msgstr "작업 다시 시작"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "초"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "초"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "모듈 선택"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "상세 정보 표시 선택"
+#~ msgid "select verbosity"
+#~ msgstr "상세 정보 표시 선택"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -9979,8 +10375,8 @@ msgstr "이후"
msgid "social login"
msgstr "소셜 로그인"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "소스 제어 분기"
@@ -9992,7 +10388,7 @@ msgstr "시스템"
msgid "timed out"
msgstr "시간 초과"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "변경 사항 토글"
@@ -10000,7 +10396,7 @@ msgstr "변경 사항 토글"
msgid "updated"
msgstr "업데이트됨"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "워크플로 작업 템플릿 webhook 키"
@@ -10024,15 +10420,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10052,7 +10448,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10064,8 +10460,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10093,38 +10489,38 @@ msgstr "{brandName} 로고"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} (<0>{username}0> 기준)"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} 분 {seconds} 초"
@@ -10150,4 +10546,4 @@ msgstr "{selectedItemsCount, plural, one {Click to run a health check on the sel
#: components/AppContainer/AppContainer.js:154
msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
-msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
+msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
diff --git a/awx/ui/src/locales/nl/messages.po b/awx/ui/src/locales/nl/messages.po
index 55518cb283..a963cf61bf 100644
--- a/awx/ui/src/locales/nl/messages.po
+++ b/awx/ui/src/locales/nl/messages.po
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(Beperkt tot de eerste 10)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(Melding bij opstarten)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "* Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (projectroot)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0 (Normaal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0 (Waarschuwing)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1 (Info)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1 (Uitgebreid)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2 (Foutopsporing)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2 (Meer verbaal)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3 (Foutopsporing)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4 (Foutopsporing verbinding)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5 (WinRM-foutopsporing)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "Een abonnementsmanifest is een export van een Red Hat-abonnement. Om een
msgid "ALL"
msgstr "ALLE"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "Service-/integratiesleutel API"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "API-token"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "Service-/integratiesleutel API"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "Over"
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "Toegang"
@@ -158,12 +127,12 @@ msgstr "Toegang"
msgid "Access Token Expiration"
msgstr "Toegangstoken vervallen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "SID account"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "Accounttoken"
@@ -171,18 +140,19 @@ msgstr "Accounttoken"
msgid "Action"
msgstr "Actie"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "Actie"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "Actie"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "Actie"
msgid "Actions"
msgstr "Acties"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "Activiteit"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "Activiteitenlogboek"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "Keuzeschakelaar type activiteitenlogboek"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "Actor"
@@ -274,19 +244,19 @@ msgstr "Link toevoegen"
msgid "Add Node"
msgstr "Knooppunt toevoegen"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "Vraag toevoegen"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "Rollen toevoegen"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "Teamrollen toevoegen"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "Gebruikersrollen toevoegen"
@@ -331,7 +301,7 @@ msgstr "Nieuwe groep toevoegen"
msgid "Add new host"
msgstr "Nieuwe host toevoegen"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "Brontype toevoegen"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "Workflowsjabloon toevoegen"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "Beheer"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "Geavanceerd"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "Documentatie over geavanceerd zoeken"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "Geavanceerde invoer zoekwaarden"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "Na iedere projectupdate waarbij de SCM-revisie verandert, dient het inventaris vernieuwd te worden vanuit de geselecteerde bron voordat de opdrachten die bij de taak horen uitgevoerd worden. Dit is bedoeld voor statische content, zoals .ini, het inventarisbestandsformaat van Ansible."
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "Na aantal voorvallen"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "Waarschuwingsmodus"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "Alle"
@@ -402,29 +372,29 @@ msgstr "Alle taaktypen"
msgid "All jobs"
msgstr "Alle taken"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "Overschrijven van vertakking toelaten"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "Overschrijven van vertakking toelaten"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr "Wijzigen van de broncontrolevertakking of de revisie toelaten in een taaksjabloon die gebruik maakt van dit project."
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "Lijst met toegestane URI's, door spaties gescheiden"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "Altijd"
@@ -448,27 +418,27 @@ msgstr "Documentatie Ansible Tower."
msgid "Answer type"
msgstr "Antwoordtype"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "Antwoord naam variabele"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "Iedere"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "Toepassing"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "Toepassingsnaam"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "Toepassingsinformatie"
@@ -477,57 +447,58 @@ msgstr "Toepassingsinformatie"
msgid "Application name"
msgstr "Toepassingsnaam"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "Toepassing niet gevonden."
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "Toepassingen"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "Toepassingen en tokens"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "Goedkeuring"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "Goedkeuring"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "Goedgekeurd"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "Goedgekeurd - {0}. Zie de activiteitenstroom voor meer informatie."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "Goedgekeurd door {0} - {1}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "April"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "Weet u zeker dat u deze taak wilt annuleren?"
@@ -571,16 +542,16 @@ msgstr "Weet u zeker dat u de {0} toegang vanuit {1} wilt verwijderen? Als u da
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "Weet u zeker dat u de {0} toegang vanuit {username} wilt verwijderen?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "Weet u zeker dat u het verzoek om deze taak te annuleren in wilt dienen?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "Argumenten"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "Artefacten"
@@ -602,7 +573,7 @@ msgstr "Associatiemodus"
msgid "At least one value must be selected for this field."
msgstr "Voor dit veld moet ten minste één waarde worden geselecteerd."
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "Augustus"
@@ -614,18 +585,27 @@ msgstr "Authenticatie"
msgid "Authorization Code Expiration"
msgstr "Machtigingscode vervallen"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "Type authenticatieverlening"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -634,8 +614,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Azure AD-instellingen"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -668,7 +648,7 @@ msgstr "Terug naar hosts"
msgid "Back to Instance Groups"
msgstr "Terug naar instantiegroepen"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "Terug naar instanties"
@@ -759,7 +739,7 @@ msgstr "Terug naar instantiegroepen"
msgid "Back to management jobs"
msgstr "Terug naar beheerderstaken"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -767,11 +747,11 @@ msgid ""
"path used to locate playbooks."
msgstr "Basispad dat gebruikt wordt voor het vinden van draaiboeken. Mappen die binnen dit pad gevonden worden, zullen in het uitklapbare menu van de draaiboekmap genoemd worden. Het basispad en de gekozen draaiboekmap bieden samen het volledige pad dat gebruikt wordt om draaiboeken te vinden."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "Wachtwoord basisauthenticatie"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -787,43 +767,47 @@ msgstr "Merkimago"
msgid "Browse"
msgstr "Bladeren"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "Bladeren..."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "Standaard verzamelen wij analytische gegevens over het gebruik van de service en sturen deze door naar Red Hat. Er zijn twee categorieën gegevens die door de service worden verzameld. Zie voor meer informatie <0>deze Tower-documentatiepagina0>. Schakel de volgende vakjes uit om deze functie uit te schakelen."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "Standaard verzamelen wij analytische gegevens over het gebruik van de service en sturen deze door naar Red Hat. Er zijn twee categorieën gegevens die door de service worden verzameld. Zie voor meer informatie <0>deze Tower-documentatiepagina0>. Schakel de volgende vakjes uit om deze functie uit te schakelen."
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "Cache time-out"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "Cache time-out"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "Cache time-out (seconden)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,11 +818,13 @@ msgstr "Cache time-out (seconden)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -859,7 +845,7 @@ msgstr "Cache time-out (seconden)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -868,32 +854,34 @@ msgstr "Cache time-out (seconden)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "Annuleren"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "Synchronisatie van inventarisbron annuleren"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "Taak annuleren"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "Projectsynchronisatie annuleren"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "Synchronisatie annuleren"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "Taak annuleren"
@@ -905,7 +893,7 @@ msgstr "Linkwijzigingen annuleren"
msgid "Cancel link removal"
msgstr "Verwijdering van link annuleren"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "Opzoeken annuleren"
@@ -931,19 +919,23 @@ msgid "Cancel subscription edit"
msgstr "Abonnement bewerken annuleren"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "Annuleren {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "Geannuleerd"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -959,10 +951,10 @@ msgstr "Cannot run health check on hop nodes."
msgid "Capacity"
msgstr "Capaciteit"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -988,14 +980,15 @@ msgstr "Hoofdletterongevoelige versie van regex."
msgid "Case-insensitive version of startswith."
msgstr "Hoofdletterongevoelige versie van startswith."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
-msgstr "Wijzig PROJECTS_ROOT bij het uitrollen van\n"
+msgstr ""
+"Wijzig PROJECTS_ROOT bij het uitrollen van\n"
"{brandName} om deze locatie te wijzigen."
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "Gewijzigd"
@@ -1004,13 +997,13 @@ msgstr "Gewijzigd"
msgid "Changes"
msgstr "Wijzigingen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "Kanaal"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "Controleren"
@@ -1034,20 +1027,20 @@ msgstr "Kies een type bericht"
msgid "Choose a Playbook Directory"
msgstr "Kies een draaiboekmap"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "Kies een broncontroletype"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "Kies een Webhookservice"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "Kies een soort taak"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "Kies een module"
@@ -1055,7 +1048,7 @@ msgstr "Kies een module"
msgid "Choose a source"
msgstr "Kies een bron"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "Kies een HTTP-methode"
@@ -1074,20 +1067,20 @@ msgstr "Kies de rollen die op de geselecteerde bronnen moeten worden toegepast.
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 "Kies de bronnen die nieuwe rollen gaan ontvangen. U kunt de rollen selecteren die u in de volgende stap wilt toepassen. Merk op dat de hier gekozen bronnen alle rollen ontvangen die in de volgende stap worden gekozen."
-#: components/AddRole/AddResourceRole.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "Kies het type bron dat de nieuwe rollen gaat ontvangen. Als u bijvoorbeeld nieuwe rollen wilt toevoegen aan een groep gebruikers, kies dan Gebruikers en klik op Volgende. In de volgende stap kunt u de specifieke bronnen selecteren."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "Opschonen"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "Wissen"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "Alle filters wissen"
@@ -1100,7 +1093,7 @@ msgstr "Abonnement wissen"
msgid "Clear subscription selection"
msgstr "Abonnementskeuze wissen"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "Klik op een beschikbaar knooppunt om een nieuwe link te maken. Klik buiten de grafiek om te annuleren."
@@ -1128,29 +1121,29 @@ msgstr "Klik op om de volgorde van de enquêtevragen te wijzigen"
msgid "Click to toggle default value"
msgstr "Klik om de standaardwaarde te wijzigen"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "Klik om de taakdetails weer te geven"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "Client-id"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "Clientidentificatie"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "Clientidentificatie"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "Clientgeheim"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "Type client"
@@ -1179,24 +1172,36 @@ msgstr "Collapse all job events"
msgid "Collapse section"
msgstr "Collapse section"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "Opdracht"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "Compliant"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "Gelijktijdige taken"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1216,11 +1221,11 @@ msgstr "Lokale autorisatie uitschakelen bevestigen"
msgid "Confirm Password"
msgstr "Wachtwoord bevestigen"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "Taak annuleren bevestigen"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "Annuleren bevestigen"
@@ -1252,7 +1257,7 @@ msgstr "Alles terugzetten bevestigen"
msgid "Confirm selection"
msgstr "Selectie bevestigen"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "Containergroep"
@@ -1284,31 +1289,40 @@ msgstr "Control"
msgid "Control node"
msgstr "Control node"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "Stel in hoeveel output Ansible produceert bij taken die de inventarisbron updaten."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr "Stel in hoeveel output Ansible produceert bij het uitvoeren van het draaiboek."
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "Stel in hoeveel output Ansible produceert bij het uitvoeren van het draaiboek."
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr "Stel in hoeveel output Ansible produceert bij het uitvoeren van het draaiboek."
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "Convergentie"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "Convergentie selecteren"
@@ -1336,15 +1350,15 @@ msgstr "Inventaris kopiëren"
msgid "Copy Notification Template"
msgstr "Berichtsjabloon kopiëren"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "Project kopiëren"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "Sjabloon kopiëren"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "Volledige herziening kopiëren naar klembord."
@@ -1353,33 +1367,35 @@ msgstr "Volledige herziening kopiëren naar klembord."
msgid "Copyright"
msgstr "Copyright"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "Maken"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "Nieuwe toepassing maken"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "Nieuwe toegangsgegevens maken"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "Nieuwe host maken"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "Nieuwe taaksjabloon maken"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "Nieuwe berichtsjabloon maken"
@@ -1388,20 +1404,20 @@ msgstr "Nieuwe berichtsjabloon maken"
msgid "Create New Organization"
msgstr "Nieuwe organisatie maken"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "Nieuw project maken"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "Nieuw schema toevoegen"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "Nieuw team maken"
@@ -1410,7 +1426,7 @@ msgstr "Nieuw team maken"
msgid "Create New User"
msgstr "Nieuwe gebruiker maken"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "Nieuwe workflowsjabloon maken"
@@ -1418,8 +1434,8 @@ msgstr "Nieuwe workflowsjabloon maken"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "Nieuwe Smart-inventaris met het toegepaste filter maken"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "Nieuwe containergroep maken"
@@ -1436,30 +1452,30 @@ msgstr "Nieuw type toegangsgegevens maken"
msgid "Create new execution environment"
msgstr "Nieuwe uitvoeringsomgeving maken"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "Nieuwe groep maken"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "Nieuwe host maken"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "Nieuwe instantiegroep maken"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "Nieuwe inventaris maken"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "Nieuwe Smart-inventaris maken"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "Nieuwe bron maken"
@@ -1468,39 +1484,39 @@ msgid "Create user token"
msgstr "Gebruikerstoken maken"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "Gemaakt"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1511,7 +1527,7 @@ msgstr "Gemaakt"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1520,7 +1536,7 @@ msgstr "Gemaakt"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1548,24 +1564,23 @@ msgstr "Gemaakt door (Gebruikersnaam)"
msgid "Created by (username)"
msgstr "Gemaakt door (gebruikersnaam)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "Toegangsgegeven"
@@ -1578,14 +1593,15 @@ msgstr "Inputbronnen toegangsgegevens"
msgid "Credential Name"
msgstr "Naam toegangsgegevens"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "Type toegangsgegevens"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1593,11 +1609,11 @@ msgstr "Type toegangsgegevens"
msgid "Credential Types"
msgstr "Types toegangsgegevens"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "Credential copied successfully"
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "Toegangsgegevens niet gevonden."
@@ -1606,15 +1622,19 @@ msgstr "Toegangsgegevens niet gevonden."
msgid "Credential passwords"
msgstr "Wachtwoorden toegangsgegevens"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "Toegangsgegevens voor authenticatie met Kubernetes of OpenShift. Moet van het type 'Kubernetes/OpenShift API Bearer Token' zijn. Indien leeg gelaten, wordt de serviceaccount van de onderliggende Pod gebruikt."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "Toegangsgegevens voor authenticatie met een beschermd containerregister."
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "Type toegangsgegevens niet gevonden."
@@ -1623,20 +1643,20 @@ msgstr "Type toegangsgegevens niet gevonden."
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "Toegangsgegevens"
@@ -1649,6 +1669,10 @@ msgstr "Toegangsgegevens die een wachtwoord vereisen bij het opstarten zijn niet
msgid "Current page"
msgstr "Huidige pagina"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "Aangepaste podspecificatie"
@@ -1663,7 +1687,7 @@ msgstr "Aangepaste virtuele omgeving {0} moet worden vervangen door een uitvoeri
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "Aangepaste virtuele omgeving {0} moet worden vervangen door een uitvoeringsomgeving. Raadpleeg voor meer informatie over het migreren van uitvoeringsomgevingen <0>de documentatie.0>"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "Aangepaste virtuele omgeving {virtualEnvironment} moet worden vervangen door een uitvoeringsomgeving. Raadpleeg voor meer informatie over het migreren van uitvoeringsomgevingen <0>de documentatie.0>"
@@ -1686,7 +1710,7 @@ msgstr "VERWIJDERD"
msgid "Dashboard"
msgstr "Dashboard"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "Dashboard (alle activiteit)"
@@ -1698,14 +1722,14 @@ msgstr "Bewaartermijn van gegevens"
msgid "Date"
msgstr "Datum"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "Dag"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "Dagen om gegevens te bewaren"
@@ -1721,11 +1745,11 @@ msgstr "Resterende dagen"
msgid "Days to keep"
msgstr "Te behouden dagen"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "Foutopsporing"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "December"
@@ -1736,9 +1760,9 @@ msgstr "December"
msgid "Default"
msgstr "Standaard"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "Standaardantwoord(en)"
@@ -1746,9 +1770,9 @@ msgstr "Standaardantwoord(en)"
msgid "Default Execution Environment"
msgstr "Standaarduitvoeringsomgeving"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "Standaardantwoord"
@@ -1767,35 +1791,35 @@ msgstr "Kenmerken en functies op systeemniveau definiëren"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "Verwijderen"
@@ -1803,42 +1827,42 @@ msgstr "Verwijderen"
msgid "Delete All Groups and Hosts"
msgstr "Alle groepen en hosts verwijderen"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "Toegangsgegevens verwijderen"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "Uitvoeringsomgeving verwijderen"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "Host verwijderen"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "Inventaris verwijderen"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "Taak verwijderen"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "Taaksjabloon verwijderen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "Bericht verwijderen"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "Organisatie verwijderen"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "Project verwijderen"
@@ -1846,7 +1870,7 @@ msgstr "Project verwijderen"
msgid "Delete Questions"
msgstr "Vragen verwijderen"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "Schema verwijderen"
@@ -1862,15 +1886,15 @@ msgstr "Team verwijderen"
msgid "Delete User"
msgstr "Gebruiker verwijderen"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "Gebruikerstoken verwijderen"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "Workflowgoedkeuring verwijderen"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "Workflow-taaksjabloon verwijderen"
@@ -1879,28 +1903,28 @@ msgstr "Workflow-taaksjabloon verwijderen"
msgid "Delete all nodes"
msgstr "Alle knooppunten verwijderen"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "Toepassing maken"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "Soort toegangsgegevens verwijderen"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "Fout verwijderen"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "Instantiegroep verwijderen"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "Inventarisbron maken"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "Smart-inventaris maken"
@@ -1908,7 +1932,7 @@ msgstr "Smart-inventaris maken"
msgid "Delete survey question"
msgstr "Vragenlijstvraag verwijderen"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1917,7 +1941,7 @@ msgid ""
msgstr "De lokale opslagplaats dient volledig verwijderd te worden voordat een update uitgevoerd wordt. Afhankelijk van het formaat van de opslagplaats kan de tijd die nodig is om een update uit te voeren hierdoor sterk verlengd worden."
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "Verwijder het project alvorens te synchroniseren."
@@ -1933,14 +1957,17 @@ msgstr "Dit knooppunt verwijderen"
msgid "Delete {pluralizedItemName}?"
msgstr "{pluralizedItemName} verwijderen?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "Verwijderd"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1952,67 +1979,71 @@ msgstr "Fout bij verwijderen"
msgid "Deletion error"
msgstr "Fout bij verwijderen"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "Geweigerd"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "Geweigerd - {0}. Zie de activiteitstroom voor meer informatie."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "Geweigerd door {0} - {1}"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "Weigeren"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "Afgeschaft"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2021,93 +2052,96 @@ msgstr "Afgeschaft"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "Omschrijving"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "Bestemmingskanalen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "Bestemmingskanalen of -gebruikers"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "Sms-nummer(s) bestemming"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "Sms-nummer(s) bestemming"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "Bestemmingskanalen"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "Bestemmingskanalen of -gebruikers"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2142,53 +2176,53 @@ msgstr "Bestemmingskanalen of -gebruikers"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "Meer informatie"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "Tabblad Details"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "Directe sleutels"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "SSL-verificatie uitschakelen"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "SSL-verificatie uitschakelen"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "Uitgeschakeld"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2203,12 +2237,12 @@ msgstr "Loskoppelen"
msgid "Disassociate group from host?"
msgstr "Groep van host loskoppelen?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "Host van groep loskoppelen?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "Instantie van instantiegroep loskoppelen?"
@@ -2235,18 +2269,23 @@ msgid "Disassociate?"
msgstr "Loskoppelen?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "Alle lokale wijzigingen vernietigen alvorens te synchroniseren"
#: screens/Template/shared/JobTemplateForm.js:479
-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 "Verdeel het uitgevoerde werk met behulp van dit taaksjabloon in het opgegeven aantal taakdelen, elk deel voert dezelfde taken uit voor een deel van de inventaris."
+#~ 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 "Verdeel het uitgevoerde werk met behulp van dit taaksjabloon in het opgegeven aantal taakdelen, elk deel voert dezelfde taken uit voor een deel van de inventaris."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "Documentatie."
@@ -2262,55 +2301,71 @@ msgstr "Gereed"
msgid "Download Output"
msgstr "Download output"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "Sleep een bestand hierheen of blader om te uploaden"
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "E-mail"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "E-mailopties"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
msgid ""
"Each time a job runs using this inventory,\n"
"refresh the inventory from the selected source before\n"
"executing job tasks."
msgstr "Elke keer dat een taak uitgevoerd wordt met dit inventaris, dient het inventaris vernieuwd te worden vanuit de geselecteerde bron voordat de opdrachten van de taak uitgevoerd worden."
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:96
+#: screens/Project/shared/Project.helptext.js:120
msgid ""
"Each time a job runs using this project, update the\n"
"revision of the project prior to starting the job."
msgstr "Voer iedere keer dat een taak uitgevoerd wordt met dit project een update uit voor de herziening van het project voordat u de taak start."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2338,10 +2393,10 @@ msgstr "Voer iedere keer dat een taak uitgevoerd wordt met dit project een updat
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2357,14 +2412,14 @@ msgstr "Toegangsgegevens bewerken"
msgid "Edit Credential Plugin Configuration"
msgstr "Toegangsgegevens plug-inconfiguratie bewerken"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2389,8 +2444,8 @@ msgstr "Toegangsgegevens plug-inconfiguratie bewerken"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "Details bewerken"
@@ -2407,11 +2462,11 @@ msgstr "Uitvoeringsomgeving bewerken"
msgid "Edit Group"
msgstr "Groep bewerken"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "Host bewerken"
@@ -2446,18 +2501,18 @@ msgstr "Volgorde bewerken"
msgid "Edit Organization"
msgstr "Organisatie bewerken"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "Project bewerken"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "Vraag bewerken"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "Schema bewerken"
@@ -2469,15 +2524,15 @@ msgstr "Bron bewerken"
msgid "Edit Survey"
msgstr "Vragenlijst wijzigen"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "Team bewerken"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "Sjabloon bewerken"
@@ -2498,12 +2553,12 @@ msgstr "Type toegangsgegevens bewerken"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "Details bewerken"
@@ -2512,7 +2567,7 @@ msgstr "Details bewerken"
msgid "Edit group"
msgstr "Groep bewerken"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "Host bewerken"
@@ -2534,13 +2589,13 @@ msgstr "Deze link bewerken"
msgid "Edit this node"
msgstr "Dit knooppunt bewerken"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "Workflow bewerken"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "Verlopen"
@@ -2560,15 +2615,15 @@ msgstr "Verstreken tijd in seconden dat de taak is uitgevoerd."
msgid "Email"
msgstr "E-mail"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "E-mailopties"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "Gelijktijdige taken inschakelen"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "Feitenopslag inschakelen"
@@ -2576,14 +2631,14 @@ msgstr "Feitenopslag inschakelen"
msgid "Enable HTTPS certificate verification"
msgstr "HTTPS-certificaatcontrole inschakelen"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "Webhook inschakelen"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "Webhook inschakelen voor deze workflowtaaksjabloon."
@@ -2595,8 +2650,8 @@ msgstr "Externe logboekregistratie inschakelen"
msgid "Enable log system tracking facts individually"
msgstr "Logboeksysteem dat feiten individueel bijhoudt inschakelen"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "Verhoging van rechten inschakelen"
@@ -2604,7 +2659,7 @@ msgstr "Verhoging van rechten inschakelen"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Eenvoudig inloggen inschakelen voor uw {brandName} toepassingen"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "Webhook inschakelen voor deze sjabloon."
@@ -2614,52 +2669,58 @@ msgstr "Webhook inschakelen voor deze sjabloon."
msgid "Enabled"
msgstr "Ingeschakeld"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "Ingeschakelde opties"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "Ingeschakelde waarde"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "Ingeschakelde variabele"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
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 "Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {brandName}\n"
+msgstr ""
+"Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {brandName}\n"
"en een verzoek voor een configuratie-update indienen met behulp van deze taaksjabloon"
#: screens/Template/shared/JobTemplateForm.js:568
-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 "Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {brandName}\n"
-"en een verzoek voor een configuratie-update indienen met behulp van deze taaksjabloon."
+#~ 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 ""
+#~ "Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {brandName}\n"
+#~ "en een verzoek voor een configuratie-update indienen met behulp van deze taaksjabloon."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "Versleuteld"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "Einde"
@@ -2671,7 +2732,7 @@ msgstr "Licentie-overeenkomst voor eindgebruikers"
msgid "End date"
msgstr "Einddatum"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "Einddatum/-tijd"
@@ -2707,97 +2768,103 @@ msgid ""
msgstr "Voer de variabelen van het inventaris in met JSON- of YAML-syntaxis. Gebruik de radio-knop om tussen de twee te wisselen. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis."
#: screens/Inventory/shared/InventoryForm.js:92
-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 "Voer de variabelen van het inventaris in met JSON- of YAML-syntaxis. Gebruik de radio-knop om tussen de twee te wisselen. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis."
+#~ 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 "Voer de variabelen van het inventaris in met JSON- of YAML-syntaxis. Gebruik de radio-knop om tussen de twee te wisselen. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "Voer een opmerkingstas in per regel, zonder komma's."
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "Voer een opmerkingstas in per regel, zonder komma's."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "Voer één IRC-kanaal of gebruikersnaam per regel in. Het hekje (#) voor kanalen en het apenstaartje (@) voor gebruikers zijn hierbij niet vereist."
+#~ 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 "Voer één IRC-kanaal of gebruikersnaam per regel in. Het hekje (#) voor kanalen en het apenstaartje (@) voor gebruikers zijn hierbij niet vereist."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "Voer één e-mailadres per regel in om een lijst met ontvangers te maken voor dit type bericht."
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr "Voer één e-mailadres per regel in om een lijst met ontvangers te maken voor dit type bericht."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "Voer één telefoonnummer per regel in om aan te geven waar\n"
-"sms-berichten te routeren. Telefoonnummers moeten worden ingedeeld als +11231231234. Voor meer informatie zie Twilio-documentatie"
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr ""
+#~ "Voer één telefoonnummer per regel in om aan te geven waar\n"
+#~ "sms-berichten te routeren. Telefoonnummers moeten worden ingedeeld als +11231231234. Voor meer informatie zie Twilio-documentatie"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "Voer het telefoonnummer in dat hoort bij de 'Berichtenservice' in Twilio in de indeling +18005550199."
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr "Voer het telefoonnummer in dat hoort bij de 'Berichtenservice' in Twilio in de indeling +18005550199."
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventaris te configureren. Voor een gedetailleerde beschrijving van het configureren van deze plug-in, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>Insights1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventaris te configureren. Voor een gedetailleerde beschrijving van het configureren van deze plug-in, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>Insights1>."
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie<0> Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>Tower1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie<0> Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>Tower1>."
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>aws_ec21>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>aws_ec21>."
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>azure_rm1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>azure_rm1>."
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>foreman1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>foreman1>."
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>gcp_compute1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>gcp_compute1>."
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>openstack1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>openstack1>."
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>ovirt1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>ovirt1>."
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>vmware_vm_inventory1>."
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins0> in de documentatie en de plug-inconfiguratiegids voor <1>vmware_vm_inventory1>."
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen."
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen."
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "Fout"
@@ -2806,90 +2873,90 @@ msgstr "Fout"
msgid "Error fetching updated project"
msgstr "Fout bij ophalen bijgewerkt project"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "Foutbericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "Foutbericht body"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "Fout bij het opslaan van de workflow!"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2900,13 +2967,16 @@ msgstr "Fout bij het opslaan van de workflow!"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "Fout!"
@@ -2914,12 +2984,12 @@ msgstr "Fout!"
msgid "Error:"
msgstr "Fout:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "Fouten"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2937,11 +3007,11 @@ msgstr "Modus gebeurtenisdetails"
msgid "Event summary not available"
msgstr "Samenvatting van de gebeurtenis niet beschikbaar"
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "Gebeurtenissen"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "Elke minuut, {0} keer"
@@ -2957,35 +3027,35 @@ msgstr "Exacte overeenkomst (standaard-opzoeken indien niet opgegeven)."
msgid "Exact search on id field."
msgstr "Exact zoeken op id-veld."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "Voorbeeld-URL's voor GIT-broncontrole zijn:"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "Voorbeeld-URL's voor Remote Archive-broncontrole zijn:"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "Voorbeeld-URL's voor Subversion-broncontrole zijn:"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "Voorbeelden hiervan zijn:"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "Voorbeelden:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "Uitvoeren ongeacht de eindtoestand van het bovenliggende knooppunt."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "Uitvoeren wanneer het bovenliggende knooppunt in een storingstoestand komt."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "Uitvoeren wanneer het bovenliggende knooppunt in een succesvolle status resulteert."
@@ -2996,29 +3066,29 @@ msgstr "Uitvoeringsknooppunt"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "Uitvoeringsomgeving"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "Uitvoeringsomgeving ontbreekt"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3026,7 +3096,7 @@ msgstr "Uitvoeringsomgeving ontbreekt"
msgid "Execution Environments"
msgstr "Uitvoeringsomgevingen"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "Uitvoeringsknooppunt"
@@ -3034,11 +3104,11 @@ msgstr "Uitvoeringsknooppunt"
msgid "Execution environment copied successfully"
msgstr "Execution environment copied successfully"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "Uitvoeringsomgeving ontbreekt of is verwijderd."
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "Uitvoeringsomgeving niet gevonden."
@@ -3055,7 +3125,7 @@ msgstr "Afsluiten zonder op te slaan"
msgid "Expand"
msgstr "Uitbreiden"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "Alle rijen uitklappen"
@@ -3077,15 +3147,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "Minstens één van client_email, project_id of private_key werd verwacht aanwezig te zijn in het bestand."
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "Verloopt"
@@ -3097,13 +3167,12 @@ msgstr "Verloopt op"
msgid "Expires on UTC"
msgstr "Verloopt op UTC"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "Verloopt op {0}"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "Uitleg"
@@ -3111,35 +3180,39 @@ msgstr "Uitleg"
msgid "External Secret Management System"
msgstr "Extern geheimbeheersysteem"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "Extra variabelen"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "VOLTOOID:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "Feitenopslag"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "Feiten"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3164,15 +3237,16 @@ msgstr "Mislukte hosts"
msgid "Failed jobs"
msgstr "Mislukte taken."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "Eén of meer workflowgoedkeuringen goed te zijn niet goedgekeurd."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "Workflowgoedkeuring is mislukt."
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "Kan rollen niet goed toewijzen"
@@ -3182,31 +3256,36 @@ msgid "Failed to associate role"
msgstr "Kan rol niet koppelen"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "Kan niet koppelen."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "Kan de synchronisatie van de inventarisbron niet annuleren"
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "Kan projectsynchronisatie niet annuleren"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "Kan een of meer taken niet annuleren."
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "Kan {0} niet annuleren"
@@ -3222,20 +3301,20 @@ msgstr "Kan uitvoeringsomgeving niet kopiëren"
msgid "Failed to copy inventory."
msgstr "Kan inventaris niet kopiëren."
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "Kan project niet kopiëren."
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "Kan sjabloon niet kopiëren."
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "Kan toepassing niet verwijderen."
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "Kan toegangsgegevens niet verwijderen"
@@ -3243,24 +3322,24 @@ msgstr "Kan toegangsgegevens niet verwijderen"
msgid "Failed to delete group {0}."
msgstr "Kan groep {0} niet verwijderen."
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "Kan host niet verwijderen."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "Kan inventarisbron {name} niet verwijderen."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "Kan inventaris niet verwijderen"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "Kan taaksjabloon niet verwijderen."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "Kan bericht niet verwijderen"
@@ -3272,7 +3351,7 @@ msgstr "Een of meer toepassingen kunnen niet worden verwijderd."
msgid "Failed to delete one or more credential types."
msgstr "Een of meer typen toegangsgegevens kunnen niet worden verwijderd."
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "Een of meer toegangsgegevens kunnen niet worden verwijderd."
@@ -3284,8 +3363,8 @@ msgstr "Een of meer uitvoeringsomgevingen kunnen niet worden verwijderd"
msgid "Failed to delete one or more groups."
msgstr "Een of meer groepen kunnen niet worden verwijderd."
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "Een of meer hosts kunnen niet worden verwijderd."
@@ -3297,15 +3376,15 @@ msgstr "Een of meer instantiegroepen kunnen niet worden verwijderd."
msgid "Failed to delete one or more inventories."
msgstr "Een of meer inventarissen kunnen niet worden verwijderd."
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "Een of meer inventarisbronnen kunnen niet worden verwijderd."
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "Een of meer taaksjablonen kunnen niet worden verwijderd."
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "Een of meer taken kunnen niet worden verwijderd."
@@ -3329,7 +3408,7 @@ msgstr "Een of meer schema's kunnen niet worden verwijderd."
msgid "Failed to delete one or more teams."
msgstr "Een of meer teams kunnen niet worden verwijderd."
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "Een of meer sjablonen kunnen niet worden verwijderd."
@@ -3337,7 +3416,7 @@ msgstr "Een of meer sjablonen kunnen niet worden verwijderd."
msgid "Failed to delete one or more tokens."
msgstr "Een of meer tokens kunnen niet worden verwijderd."
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "Een of meer gebruikerstokens kunnen niet worden verwijderd."
@@ -3345,19 +3424,19 @@ msgstr "Een of meer gebruikerstokens kunnen niet worden verwijderd."
msgid "Failed to delete one or more users."
msgstr "Een of meer gebruikers kunnen niet worden verwijderd."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "Een of meer workflowgoedkeuringen kunnen niet worden verwijderd."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "Kan organisatie niet verwijderen."
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "Kan project niet verwijderen."
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "Kan rol niet verwijderen"
@@ -3366,11 +3445,11 @@ msgstr "Kan rol niet verwijderen"
msgid "Failed to delete role."
msgstr "Kan rol niet verwijderen."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "Kan schema niet verwijderen."
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "Kan Smart-inventaris niet verwijderen."
@@ -3382,11 +3461,11 @@ msgstr "Kan team niet verwijderen."
msgid "Failed to delete user."
msgstr "Kan gebruiker niet verwijderen."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "Kan workflowgoedkeuring niet verwijderen."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "Kan workflow-taaksjabloon niet verwijderen."
@@ -3395,11 +3474,11 @@ msgstr "Kan workflow-taaksjabloon niet verwijderen."
msgid "Failed to delete {name}."
msgstr "Kan {name} niet verwijderen."
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "Een of meer workflowgoedkeuringen kunnen niet worden geweigerd."
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "Kan workflowgoedkeuring niet weigeren."
@@ -3409,13 +3488,13 @@ msgstr "Kan workflowgoedkeuring niet weigeren."
msgid "Failed to disassociate one or more groups."
msgstr "Een of meer groepen kunnen niet worden losgekoppeld."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "Een of meer hosts kunnen niet worden losgekoppeld."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "Een of meer instanties kunnen niet worden losgekoppeld."
@@ -3423,7 +3502,7 @@ msgstr "Een of meer instanties kunnen niet worden losgekoppeld."
msgid "Failed to disassociate one or more teams."
msgstr "Een of meer teams kunnen niet worden losgekoppeld."
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "Kan de aangepaste configuratie-instellingen voor inloggen niet ophalen. De standaardsysteeminstellingen worden in plaats daarvan getoond."
@@ -3431,7 +3510,7 @@ msgstr "Kan de aangepaste configuratie-instellingen voor inloggen niet ophalen.
msgid "Failed to fetch the updated project data."
msgstr "Kan de bijgewerkte projectgegevens niet ophalen."
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3449,7 +3528,7 @@ msgstr "Kan geen volledig bronobject van knooppunt ophalen."
msgid "Failed to retrieve node credentials."
msgstr "Kan geen knooppuntgegevens ophalen."
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "Kan geen gezondheidscontrole uitvoeren op een of meer instanties."
@@ -3462,11 +3541,11 @@ msgstr "Kan testbericht niet verzenden."
msgid "Failed to sync inventory source."
msgstr "Kan inventarisbron niet synchroniseren."
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "Kan project niet synchroniseren."
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "Kan sommige of alle inventarisbronnen niet synchroniseren."
@@ -3486,9 +3565,9 @@ msgstr "Kan niet van bericht wisselen."
msgid "Failed to toggle schedule."
msgstr "Kan niet van schema wisselen."
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "Kan de capaciteitsaanpassing niet bijwerken."
@@ -3497,7 +3576,7 @@ msgstr "Kan de capaciteitsaanpassing niet bijwerken."
msgid "Failed to update survey."
msgstr "Kan de vragenlijst niet bijwerken."
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "Kan gebruikerstoken niet bijwerken."
@@ -3506,17 +3585,17 @@ msgstr "Kan gebruikerstoken niet bijwerken."
msgid "Failure"
msgstr "Mislukking"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "False"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "Februari"
@@ -3540,11 +3619,11 @@ msgstr "Het veld komt overeen met de opgegeven reguliere expressie."
msgid "Field starts with value."
msgstr "Veld begint met waarde."
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "Vijfde"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "Bestandsverschil"
@@ -3556,28 +3635,28 @@ msgstr "Bestand uploaden geweigerd. Selecteer één .json-bestand."
msgid "File, directory or script"
msgstr "Bestand, map of script"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "Filteren op {name}"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "Voltooiingstijd"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "Voltooid"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "Eerste"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3586,17 +3665,17 @@ msgstr "Eerste"
msgid "First Name"
msgstr "Voornaam"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "Eerste uitvoering"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "Voornaam"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "Selecteer eerst een sleutel"
@@ -3618,51 +3697,57 @@ msgid "Follow"
msgstr "Volgen"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "Voor taaksjablonen selecteer \"uitvoeren\" om het draaiboek uit te voeren. Selecteer \"controleren\" om slechts de syntaxis van het draaiboek te controleren, de installatie van de omgeving te testen en problemen te rapporteren zonder het draaiboek uit te voeren."
+#~ 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 "Voor taaksjablonen selecteer \"uitvoeren\" om het draaiboek uit te voeren. Selecteer \"controleren\" om slechts de syntaxis van het draaiboek te controleren, de installatie van de omgeving te testen en problemen te rapporteren zonder het draaiboek uit te voeren."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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 "Voor taaksjablonen selecteer \"uitvoeren\" om het draaiboek uit te voeren. Selecteer \"controleren\" om slechts de syntaxis van het draaiboek te controleren, de installatie van de omgeving te testen en problemen te rapporteren zonder het draaiboek uit te voeren."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "Bekijk voor meer informatie de"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "Vorken"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "Vierde"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "Frequentie-informatie"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "Frequentie kwam niet overeen met een verwachte waarde"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "Vrij"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "Vrijdag"
@@ -3674,7 +3759,7 @@ msgstr "Fuzzy search op id, naam of beschrijvingsvelden."
msgid "Fuzzy search on name field."
msgstr "Fuzzy search op naamveld."
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Galaxy-toegangsgegevens"
@@ -3683,7 +3768,7 @@ msgstr "Galaxy-toegangsgegevens"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Galaxy-toegangsgegevens moeten eigendom zijn van een organisatie."
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "Feiten verzamelen"
@@ -3698,13 +3783,14 @@ msgstr "Abonnementen ophalen"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3742,17 +3828,17 @@ msgstr "GitHub-team"
msgid "GitHub settings"
msgstr "GitHub-instellingen"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "Wereldwijd beschikbaar"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "Wereldwijd beschikbare uitvoeringsomgeving kan niet opnieuw worden toegewezen aan een specifieke organisatie"
@@ -3789,12 +3875,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Grafana API-sleutel"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "Grafana URL"
@@ -3810,7 +3896,7 @@ msgstr "Groter dan of gelijk aan vergelijking."
msgid "Group"
msgstr "Groep"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "Groepsdetails"
@@ -3818,12 +3904,12 @@ msgstr "Groepsdetails"
msgid "Group type"
msgstr "Type groep"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3832,13 +3918,13 @@ msgstr "Type groep"
msgid "Groups"
msgstr "Groepen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "HTTP-koppen"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "HTTP-methode"
@@ -3846,10 +3932,10 @@ msgstr "HTTP-methode"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "Gezondheidscontrole"
+#~ msgid "Health Check"
+#~ msgstr "Gezondheidscontrole"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "Gezond"
@@ -3880,23 +3966,23 @@ msgstr "Hop"
msgid "Hop node"
msgstr "Hop node"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "Host"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "Host Async mislukking"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "Host Async OK"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "Configuratiesleutel host"
@@ -3904,61 +3990,61 @@ msgstr "Configuratiesleutel host"
msgid "Host Count"
msgstr "Aantal hosts"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "Hostdetails"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "Host is mislukt"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "Hostmislukking"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "Hostfilter"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "Hostnaam"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "Host OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "Hostpolling"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "Host opnieuw proberen"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "Host overgeslagen"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "Host gestart"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "Host onbereikbaar"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "Hostdetails"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "Modus hostdetails"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "Host niet gevonden."
@@ -3968,20 +4054,20 @@ msgid "Host status information for this job is unavailable."
msgstr "Statusinformatie van de host is niet beschikbaar voor deze taak."
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4006,7 +4092,7 @@ msgstr "Geïmporteerde hosts"
msgid "Hosts remaining"
msgstr "Resterende hosts"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "Uur"
@@ -4023,25 +4109,25 @@ msgstr "Hybrid"
msgid "Hybrid node"
msgstr "Hybrid node"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "ID van het dashboard"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "ID van het paneel"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "ID van het dashboard (optioneel)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "ID van het paneel (optioneel)"
@@ -4050,49 +4136,49 @@ msgstr "ID van het paneel (optioneel)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC-bijnaam"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "IRC-serveradres"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "IRC-serverpoort"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC-bijnaam"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "IRC-serveradres"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "IRC-serverwachtwoord"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "IRC-serverpoort"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "Icoon-URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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 "Als dit vakje is ingeschakeld, worden alle variabelen voor onderliggende groepen en hosts verwijderd en worden ze vervangen door de variabelen die aangetroffen worden in de externe bron."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4104,12 +4190,16 @@ msgid ""
msgstr "Als dit vakje is ingeschakeld, worden alle groepen en hosts die eerder aanwezig waren in de externe bron, maar die nu verwijderd zijn, verwijderd uit de inventaris. Hosts en groepen die niet beheerd werden door de inventarisbron, worden omhoog verplaatst naar de volgende handmatig gemaakte groep. Als er geen handmatig gemaakte groep is waar ze naartoe kunnen worden verplaatst, blijven ze staan in de standaard inventarisgroep 'Alle'."
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "Als deze optie ingeschakeld is, wordt het draaiboek uitgevoerd als beheerder."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr "Als deze optie ingeschakeld is, wordt het draaiboek uitgevoerd als beheerder."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4117,35 +4207,48 @@ msgid ""
msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible."
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible."
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible."
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible."
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "Indien deze mogelijkheid ingeschakeld is, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan."
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr "Indien deze mogelijkheid ingeschakeld is, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "Indien deze mogelijkheid ingeschakeld is, zijn gelijktijdige uitvoeringen van deze workflow-taaksjabloon toegestaan."
#: screens/Template/shared/JobTemplateForm.js:611
-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 "Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze kunnen worden weergegeven op hostniveau. Feiten worden bewaard en\n"
-"geïnjecteerd in de feitencache tijdens runtime."
+#~ 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 ""
+#~ "Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze kunnen worden weergegeven op hostniveau. Feiten worden bewaard en\n"
+#~ "geïnjecteerd in de feitencache tijdens runtime."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "Indien gespecificeerd, zal dit veld worden getoond op het knooppunt in plaats van de resourcenaam bij het bekijken van de workflow"
@@ -4163,27 +4266,28 @@ msgstr "Als u geen abonnement heeft, kunt u bij Red Hat terecht voor een proefab
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "Als u alleen de toegang voor deze specifieke gebruiker wilt verwijderen, verwijder deze dan uit het team."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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 "Als u wilt dat de inventarisbron wordt bijgewerkt bij\n"
+msgstr ""
+"Als u wilt dat de inventarisbron wordt bijgewerkt bij\n"
"het opstarten en bij projectupdates, klik op Update bij opstarten, en ga ook naar"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "Image"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "Inclusief bestand"
@@ -4192,7 +4296,8 @@ 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 "Geeft aan of een host beschikbaar is en opgenomen moet worden in lopende taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\n"
+msgstr ""
+"Geeft aan of een host beschikbaar is en opgenomen moet worden in lopende taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\n"
"gereset worden door het inventarissynchronisatieproces."
#: components/AppContainer/PageHeaderToolbar.js:108
@@ -4203,17 +4308,17 @@ msgstr "Info"
msgid "Initiated By"
msgstr "Gestart door"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "Gestart door"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "Gestart door (gebruikersnaam)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "Configuratie-injector"
@@ -4223,18 +4328,22 @@ msgstr "Configuratie-injector"
msgid "Input configuration"
msgstr "Configuratie-input"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Toegangsgegevens voor Insights"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Dashboard Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Dashboard Insights for Ansible Automation Platform"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4244,27 +4353,27 @@ msgstr "Systeem-ID Insights"
msgid "Instance"
msgstr "Instantie"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "Instantiefilters"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "Instantiegroep"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "Instantiegroepen"
@@ -4272,7 +4381,7 @@ msgstr "Instantiegroepen"
msgid "Instance ID"
msgstr "Instantie-id"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "Instantiedetails"
@@ -4281,7 +4390,7 @@ msgstr "Instantiedetails"
msgid "Instance group"
msgstr "Instantiegroep"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "Kan instantiegroep niet vinden."
@@ -4290,21 +4399,21 @@ msgstr "Kan instantiegroep niet vinden."
msgid "Instance group used capacity"
msgstr "Gebruikte capaciteit instantiegroep"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "Instantiegroepen"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "Instanties"
@@ -4328,15 +4437,15 @@ msgstr "Ongeldig linkdoel. Kan niet linken aan onder- of bovenliggende knooppunt
msgid "Invalid time format"
msgstr "Ongeldige tijdsindeling"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "Ongeldige gebruikersnaam of wachtwoord. Probeer het opnieuw."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4352,36 +4461,38 @@ msgstr "Inventarissen met bronnen kunnen niet gekopieerd worden"
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "Inventaris"
@@ -4389,7 +4500,7 @@ msgstr "Inventaris"
msgid "Inventory (Name)"
msgstr "Inventaris (naam)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "Inventarisbestand"
@@ -4397,35 +4508,35 @@ msgstr "Inventarisbestand"
msgid "Inventory ID"
msgstr "Inventaris-id"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "Inventarisbron"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "Project inventarisbronnen"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "Synchronisatie inventarisbronnen"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "Fout tijdens synchronisatie inventarisbronnen"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "Inventarisbronnen"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "Inventarissynchronisatie"
@@ -4441,12 +4552,12 @@ msgstr "Inventarisupdate"
msgid "Inventory copied successfully"
msgstr "Inventory copied successfully"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "Inventarisbestand"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "Inventaris niet gevonden."
@@ -4458,23 +4569,23 @@ msgstr "Inventarissynchronisatie"
msgid "Inventory sync failures"
msgstr "Fout tijdens inventarissynchronisatie"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "Is uitgeklapt"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "Is niet uitgeklapt"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "Item mislukt"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "Item OK"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "Item overgeslagen"
@@ -4488,49 +4599,50 @@ msgid "Items per page"
msgstr "Items per pagina"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "TAAK-ID:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "JSON-tabblad"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "Januari"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "Taak"
+#~ msgid "Job"
+#~ msgstr "Taak"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "Fout bij annuleren taak"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "Fout bij verwijderen taak"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "Taak-id:"
@@ -4539,33 +4651,33 @@ msgid "Job Runs"
msgstr "Taakuitvoeringen"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "Taken verdelen"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "Ouder taken verdelen"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "Taken verdelen"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "Taakstatus"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "Taaktags"
@@ -4574,9 +4686,9 @@ msgstr "Taaktags"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "Taaksjabloon"
@@ -4584,13 +4696,13 @@ msgstr "Taaksjabloon"
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 "De standaardreferenties van de taaksjabloon moeten worden vervangen door een van hetzelfde type. Selecteer een toegangsgegeven voor de volgende typen om verder te gaan: {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4605,15 +4717,15 @@ msgstr "Taaksjablonen met een ontbrekende inventaris of een ontbrekend project k
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "Taaksjablonen met toegangsgegevens die om een wachtwoord vragen, kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten"
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "Soort taak"
@@ -4625,35 +4737,35 @@ msgstr "Taakstatus"
msgid "Job status graph tab"
msgstr "Grafiektabblad Taakstatus"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "Taaksjablonen"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "Taken"
@@ -4661,27 +4773,27 @@ msgstr "Taken"
msgid "Jobs settings"
msgstr "Taakinstellingen"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "Juli"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "Juni"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "Sleutel"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "Sleutel selecteren"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "Sleutel typeahead"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "Trefwoord"
@@ -4738,44 +4850,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "Label"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "Labelnaam"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "Labels"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "Laatste"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "Laatste gezondheidscontrole"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "Laatste taakstatus"
@@ -4783,36 +4896,36 @@ msgstr "Laatste taakstatus"
msgid "Last Login"
msgstr "Laatste login"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "Laatst aangepast"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4821,12 +4934,12 @@ msgstr "Laatst aangepast"
msgid "Last Name"
msgstr "Achternaam"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "Laatst uitgevoerd"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "Laatste uitvoering"
@@ -4834,19 +4947,19 @@ msgstr "Laatste uitvoering"
msgid "Last job"
msgstr "Laatste taak"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "Laatste wijziging"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "Achternaam"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "Laatst gebruikt"
@@ -4854,18 +4967,18 @@ msgstr "Laatst gebruikt"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "Starten"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "Beheertaak starten"
+#~ msgid "Launch Management Job"
+#~ msgstr "Beheertaak starten"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "Sjabloon opstarten"
@@ -4878,7 +4991,7 @@ msgstr "Sjabloon opstarten"
msgid "Launch management job"
msgstr "Beheertaak opstarten"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "Sjabloon opstarten"
@@ -4895,15 +5008,19 @@ msgstr "Starten | {0}"
msgid "Launched By"
msgstr "Gestart door"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "Opgestart door (gebruikersnaam)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "Meer informatie over Insights for Ansible Automation Platform"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "Meer informatie over Insights for Ansible Automation Platform"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "Laat dit veld leeg om de uitvoeringsomgeving globaal beschikbaar te maken."
@@ -4922,19 +5039,20 @@ msgstr "Minder dan vergelijking."
msgid "Less than or equal to comparison."
msgstr "Minder dan of gelijk aan vergelijking."
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "Limiet"
@@ -4950,15 +5068,15 @@ msgstr "Laden"
msgid "Local"
msgstr "Lokaal"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "Lokale tijdzone"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "Lokale tijdzone"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "Inloggen"
@@ -4977,7 +5095,7 @@ msgid "Logout"
msgstr "Afmelden"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "Opzoekmodus"
@@ -4993,9 +5111,9 @@ msgstr "Type opzoeken"
msgid "Lookup typeahead"
msgstr "Typeahead opzoeken"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "MEEST RECENTE SYNCHRONISATIE"
@@ -5003,11 +5121,11 @@ msgstr "MEEST RECENTE SYNCHRONISATIE"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "Toegangsgegevens machine"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "Beheerd"
@@ -5016,13 +5134,13 @@ msgstr "Beheerd"
msgid "Managed nodes"
msgstr "Beheerde knooppunten"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "Beheertaak"
@@ -5031,7 +5149,7 @@ msgstr "Beheertaak"
msgid "Management Jobs"
msgstr "Beheerderstaken"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "Beheertaak"
@@ -5040,11 +5158,11 @@ msgstr "Beheertaak"
msgid "Management job launch error"
msgstr "Fout bij opstarten van beheertaak"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "Beheertaak niet gevonden."
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "Beheertaken"
@@ -5052,18 +5170,19 @@ msgstr "Beheertaken"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "Handmatig"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "Maart"
@@ -5072,20 +5191,20 @@ msgstr "Maart"
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "Max. hosts"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "Maximum"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "Maximumlengte"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "Mei"
@@ -5110,27 +5229,29 @@ msgstr "Meetwaarden"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "Minimum"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "Minimumlengte"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "Minimum aantal instanties dat automatisch toegewezen wordt aan deze groep wanneer nieuwe instanties online komen."
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
msgid ""
"Minimum percentage of all instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "Minimumpercentage van alle instanties die automatisch toegewezen worden aan deze groep wanneer nieuwe instanties online komen."
-#: components/Schedule/shared/ScheduleForm.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "Minuut"
@@ -5151,23 +5272,23 @@ msgid "Miscellaneous System settings"
msgstr "Diverse systeeminstellingen"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "Ontbrekend"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "Ontbrekende bron"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "Gewijzigd"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5178,7 +5299,7 @@ msgstr "Gewijzigd"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5187,7 +5308,7 @@ msgstr "Gewijzigd"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5215,33 +5336,33 @@ msgstr "Gewijzigd door (gebruikersnaam)"
msgid "Modified by (username)"
msgstr "Gewijzigd door (gebruikersnaam)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "Module"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "Module-argumenten"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "Naam van de module"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "Ma"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "Maandag"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "Maand"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "Meer informatie"
@@ -5249,13 +5370,13 @@ msgstr "Meer informatie"
msgid "More information for"
msgstr "Meer informatie voor"
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "Multi-Select"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "Meerkeuze"
@@ -5267,7 +5388,7 @@ msgstr "Meerkeuze-opties (meerdere keuzes mogelijk)"
msgid "Multiple Choice (single select)"
msgstr "Meerkeuze-opties (één keuze mogelijk)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "Meerkeuze-opties"
@@ -5275,13 +5396,13 @@ msgstr "Meerkeuze-opties"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5313,15 +5434,15 @@ msgstr "Meerkeuze-opties"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5337,18 +5458,18 @@ msgstr "Meerkeuze-opties"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5358,14 +5479,14 @@ msgstr "Meerkeuze-opties"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5380,8 +5501,8 @@ msgstr "Meerkeuze-opties"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5411,15 +5532,15 @@ msgstr "Meerkeuze-opties"
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5442,40 +5563,40 @@ msgstr "Meerkeuze-opties"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5483,10 +5604,10 @@ msgstr "Meerkeuze-opties"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "Naam"
@@ -5494,9 +5615,9 @@ msgstr "Naam"
msgid "Navigation"
msgstr "Navigatie"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "Nooit"
@@ -5504,22 +5625,21 @@ msgstr "Nooit"
msgid "Never Updated"
msgstr "Nooit bijgewerkt"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "Verloopt nooit"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "Nieuw"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5528,27 +5648,27 @@ msgstr "Nieuw"
msgid "Next"
msgstr "Volgende"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "Volgende uitvoering"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "Geen"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "Geen overeenkomende hosts"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "Geen resterende hosts"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "Geen JSON beschikbaar"
@@ -5557,12 +5677,12 @@ msgid "No Jobs"
msgstr "Geen taken"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "Geen standaardfout beschikbaar"
+#~ msgid "No Standard Error Available"
+#~ msgstr "Geen standaardfout beschikbaar"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "Geen standaardoutput beschikbaar"
+#~ msgid "No Standard Out Available"
+#~ msgstr "Geen standaardoutput beschikbaar"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5572,7 +5692,7 @@ msgstr "Geen fouten bij inventarissynchronisatie."
msgid "No items found."
msgstr "Geen items gevonden."
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "Geen taakgegevens beschikbaar."
@@ -5580,7 +5700,7 @@ msgstr "Geen taakgegevens beschikbaar."
msgid "No output found for this job."
msgstr "No output found for this job."
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "Geen resultaat gevonden"
@@ -5589,20 +5709,20 @@ msgstr "Geen resultaat gevonden"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "Geen resultaten gevonden"
@@ -5620,22 +5740,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "{pluralizedItemName} niet gevonden"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "Knooppunt alias"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "Type knooppunt"
@@ -5651,11 +5771,11 @@ msgstr "Type knooppunt"
msgid "None"
msgstr "Geen"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "Geen (eenmaal uitgevoerd)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "Geen (eenmaal uitgevoerd)"
@@ -5678,7 +5798,7 @@ msgstr "Niet geconfigureerd"
msgid "Not configured for inventory sync."
msgstr "Niet geconfigureerd voor inventarissynchronisatie."
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5702,11 +5822,11 @@ msgstr "Opmerking: de volgorde waarin deze worden geselecteerd bepaalt de voorra
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "Opmerking: de volgorde van deze toegangsgegevens bepaalt de voorrang voor de synchronisatie en het opzoeken van de inhoud. Selecteer er meer dan één om slepen mogelijk te maken."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "Opmerking: dit veld gaat ervan uit dat de naam op afstand \"oorsprong\" is."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5716,7 +5836,7 @@ msgid ""
"password information."
msgstr "Opmerking: als u een SSH-protocol gebruikt voor GitHub of Bitbucket, voer dan alleen een SSH-sleutel in. Voer geen gebruikersnaam in (behalve git). Daarnaast ondersteunen GitHub en Bitbucket geen wachtwoordauthenticatie bij gebruik van SSH. Het GIT-alleen-lezen-protocol (git://) gebruikt geen gebruikersnaam- of wachtwoordinformatie."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "Berichtkleur"
@@ -5725,11 +5845,11 @@ msgstr "Berichtkleur"
msgid "Notification Template not found."
msgstr "Berichtsjabloon niet gevonden"
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "Berichtsjablonen"
@@ -5738,7 +5858,7 @@ msgstr "Berichtsjablonen"
msgid "Notification Type"
msgstr "Berichttype"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "Berichtkleur"
@@ -5746,7 +5866,7 @@ msgstr "Berichtkleur"
msgid "Notification sent successfully"
msgstr "Bericht is verzonden"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "Notification test failed."
@@ -5761,25 +5881,25 @@ msgstr "Berichttype"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "Berichten"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "November"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5787,69 +5907,75 @@ msgid "OK"
msgstr "OK"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "Voorvallen"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "Oktober"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "Uit"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "Aan"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "Bij mislukken"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "Bij slagen"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "Aan-datum"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "Aan-dagen"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "Alleen ordenen op"
@@ -5857,26 +5983,31 @@ msgstr "Alleen ordenen op"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "Optie Details"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
msgstr "Optionele labels die de taaksjabloon beschrijven, zoals 'dev' of 'test'. Labels kunnen gebruikt worden om taaksjablonen en uitgevoerde taken te ordenen en filteren."
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "Optionele labels die de taaksjabloon beschrijven, zoals 'dev' of 'test'. Labels kunnen gebruikt worden om taaksjablonen en uitgevoerde taken te ordenen en filteren."
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "Optioneel: selecteer de toegangsgegevens die u wilt gebruiken om statusupdates terug te sturen naar de webhookservice."
@@ -5884,15 +6015,15 @@ msgstr "Optioneel: selecteer de toegangsgegevens die u wilt gebruiken om statusu
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "Opties"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "Bestellen"
@@ -5900,19 +6031,20 @@ msgstr "Bestellen"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5920,19 +6052,19 @@ msgstr "Bestellen"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5947,19 +6079,19 @@ msgstr "Organisatie (naam)"
msgid "Organization Name"
msgstr "Naam van organisatie"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "Organisatie niet gevonden."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5974,34 +6106,39 @@ msgstr "Overige meldingen"
msgid "Out of compliance"
msgstr "Niet compliant"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "Output"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "Overschrijven"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "Lokale groepen en hosts overschrijven op grond van externe inventarisbron"
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "Lokale variabelen overschrijven op grond van externe inventarisbron"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "Variabelen overschrijven"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "BERICHT"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PUT"
@@ -6010,11 +6147,11 @@ msgstr "PUT"
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Subdomein Pagerduty"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Subdomein Pagerduty"
@@ -6038,23 +6175,28 @@ msgstr "Naar rechts pannen"
msgid "Pan Up"
msgstr "Omhoog pannen"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Geef extra opdrachtregelwijzigingen in door. Er zijn twee opdrachtregelparameters voor Ansible:"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "Geef extra opdrachtregelvariabelen op in het draaiboek. Dit is de opdrachtregelparameter -e of --extra-vars voor het Ansible-draaiboek. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie voor voorbeeldsyntaxis"
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr "Geef extra opdrachtregelvariabelen op in het draaiboek. Dit is de opdrachtregelparameter -e of --extra-vars voor het Ansible-draaiboek. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie voor voorbeeldsyntaxis"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
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 "Geef extra commandoregelvariabelen op in het draaiboek. Dit is de commandoregelparameter -e of --extra-vars voor het ansible-draaiboek. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis"
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6079,8 +6221,8 @@ msgstr "Afgelopen twee weken"
msgid "Past week"
msgstr "Afgelopen week"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "In afwachting"
@@ -6097,7 +6239,7 @@ msgstr "In afwachting om verwijderd te worden"
msgid "Perform a search to define a host filter"
msgstr "Voer een zoekopdracht uit om een hostfilter te definiëren"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "Persoonlijke toegangstoken"
@@ -6106,7 +6248,7 @@ msgstr "Persoonlijke toegangstoken"
msgid "Personal access token"
msgstr "Persoonlijke toegangstoken"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "Afspelen"
@@ -6114,45 +6256,45 @@ msgstr "Afspelen"
msgid "Play Count"
msgstr "Aantal afspelen"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "Afspelen gestart"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Draaiboek"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Draaiboek controleren"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Draaiboek voltooid"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Draaiboekmap"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Draaiboek uitvoering"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Draaiboek gestart"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6192,27 +6334,27 @@ msgstr "Klik op de startknop om te beginnen."
msgid "Please enter a valid URL"
msgstr "Voer een geldige URL in."
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "Voer een waarde in."
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "Log in"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "Voer een taak uit om deze lijst te vullen."
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "Selecteer een getal tussen 1 en 31"
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "Selecteer een inventaris of schakel de optie Melding bij opstarten in."
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "Kies een einddatum/-tijd die na de begindatum/-tijd komt."
@@ -6228,13 +6370,13 @@ msgstr "Please try another search using the filter above"
msgid "Please wait until the topology view is populated..."
msgstr "Please wait until the topology view is populated..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Overschrijven Podspec"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "Beleidstype"
@@ -6244,7 +6386,7 @@ msgstr "Beleidstype"
msgid "Policy instance minimum"
msgstr "Beleid instantieminimum"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "Beleid instantiepercentage"
@@ -6261,17 +6403,18 @@ msgid ""
"Refer to the documentation for further syntax and\n"
"examples. Refer to the Ansible Tower documentation for further syntax and\n"
"examples."
-msgstr "Vul de hosts voor deze inventaris door gebruik te maken van een zoekfilter. Voorbeeld: ansible_facts.ansible_distribution: \"RedHat\".\n"
+msgstr ""
+"Vul de hosts voor deze inventaris door gebruik te maken van een zoekfilter. Voorbeeld: ansible_facts.ansible_distribution: \"RedHat\".\n"
"Raadpleeg de documentatie voor verdere syntaxis en\n"
"voorbeelden. Raadpleeg de documentatie van Ansible Tower voor verdere syntaxis en\n"
"voorbeelden."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "Poort"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "Voorwaarden voor het uitvoeren van dit knooppunt wanneer er meerdere bovenliggende elementen zijn. Raadpleeg de"
@@ -6281,10 +6424,18 @@ msgid ""
"choice per line."
msgstr "Druk op 'Enter' om meer antwoordkeuzen toe te voegen. Eén antwoordkeuze per regel."
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "Druk op Enter om te bewerken. Druk op ESC om het bewerken te stoppen."
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6294,9 +6445,9 @@ msgstr "Voorvertoning"
msgid "Private key passphrase"
msgstr "Privésleutel wachtwoordzin"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "Verhoging van rechten"
@@ -6304,40 +6455,44 @@ msgstr "Verhoging van rechten"
msgid "Privilege escalation password"
msgstr "Wachtwoord verhoging van rechten"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "Project"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "Basispad project"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "Status selecteren"
+#~ msgid "Project Status"
+#~ msgstr "Status selecteren"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "Projectsynchronisatie"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "Fout tijdens projectsynchronisatie"
@@ -6345,11 +6500,19 @@ msgstr "Fout tijdens projectsynchronisatie"
msgid "Project Update"
msgstr "Projectupdate"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "Project copied successfully"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "Feit niet gevonden."
@@ -6359,12 +6522,12 @@ msgstr "Mislukte projectsynchronisaties"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6375,18 +6538,18 @@ msgstr "Projecten"
msgid "Promote Child Groups and Hosts"
msgstr "Onderliggende groepen en hosts promoveren"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "Melding"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "Meldingsoverschrijvingen"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "Melding bij opstarten"
@@ -6394,13 +6557,12 @@ msgstr "Melding bij opstarten"
msgid "Prompt | {0}"
msgstr "Melding | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "Invoerwaarden"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6408,7 +6570,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr "Geef een hostpatroon op om de lijst van hosts die beheerd of beïnvloed worden door het draaiboek verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de documentatie van Ansible voor meer informatie over en voorbeelden van patronen."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6416,11 +6578,16 @@ msgid ""
"information and examples on patterns."
msgstr "Geef een hostpatroon op om de lijst van hosts die beheerd of beïnvloed worden door het draaiboek verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de documentatie van Ansible voor meer informatie over en voorbeelden van patronen."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "Geef een waarde op voor dit veld of selecteer de optie Melding bij opstarten."
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6435,32 +6602,40 @@ msgid ""
msgstr "Geef uw Red Hat- of Red Hat Satellite-gegevens hieronder door en u kunt kiezen uit een lijst met beschikbare abonnementen. De toegangsgegevens die u gebruikt, worden opgeslagen voor toekomstig gebruik bij het ophalen van verlengingen of uitbreidingen van abonnementen."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "Geef uw Red Hat- of Red Hat Satellite-toegangsgegevens op om het Insights for Ansible Automation Platform in te schakelen."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "Geef uw Red Hat- of Red Hat Satellite-toegangsgegevens op om het Insights for Ansible Automation Platform in te schakelen."
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "Provisioning terugkoppelings-URL"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "Provisioning terugkoppelingsdetails"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "Provisioning terugkoppelingen"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Pullen"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "Vraag"
@@ -6472,14 +6647,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "RADIUS-instellingen"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "Lezen"
@@ -6499,9 +6674,9 @@ msgstr "Recente sjablonen"
msgid "Recent Templates list tab"
msgstr "Tabblad Lijst met recente sjablonen"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "Recente taken"
@@ -6520,6 +6695,7 @@ msgstr "Automatiseringsplatform voor Red Hat Ansible"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6541,13 +6717,14 @@ msgstr "Red Hat-abonnementsmanifest"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "URI's doorverwijzen"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "URI's doorverwijzen"
+#~ msgid "Redirect uris"
+#~ msgstr "URI's doorverwijzen"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6557,15 +6734,20 @@ msgstr "Doorverwijzen naar dashboard"
msgid "Redirecting to subscription detail"
msgstr "Doorverwijzen naar abonnementsdetails"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "Raadpleeg de"
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "Raadpleeg de documentatie van Ansible voor meer informatie over het configuratiebestand."
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr "Raadpleeg de documentatie van Ansible voor meer informatie over het configuratiebestand."
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6583,25 +6765,26 @@ msgstr "Synchroniseren voor herziening"
msgid "Refresh project revision"
msgstr "Herziening vernieuwing project"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "Regio's"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "Toegangsgegevens registreren"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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 "Reguliere expressie waarbij alleen overeenkomende hostnamen worden geïmporteerd. Het filter wordt toegepast als een nabewerkingsstap nadat eventuele filters voor inventarisplugins zijn toegepast."
-#: screens/Inventory/Inventories.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "Gerelateerde groepen"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "Verwante sleutels"
@@ -6616,8 +6799,8 @@ msgstr "Verwante zoekopdracht typeahead"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "Opnieuw starten"
@@ -6648,12 +6831,13 @@ msgstr "Opnieuw opstarten met hostparameters"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "Extern archief"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6672,11 +6856,11 @@ msgstr "Link verwijderen"
msgid "Remove Node {nodeName}"
msgstr "Knooppunt verwijderen {nodeName}"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "Verwijder alle plaatselijke aanpassingen voordat een update uitgevoerd wordt."
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "Remove the current search related to ansible facts to enable another search using this key."
@@ -6692,15 +6876,19 @@ msgstr "Chip {0} verwijderen"
msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch."
msgstr "Als u deze link verwijdert, wordt de rest van de vertakking zwevend en wordt deze onmiddellijk bij lancering uitgevoerd."
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "Frequentie herhalen"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "Vervangen"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "Veld vervangen door nieuwe waarde"
@@ -6710,7 +6898,7 @@ msgid "Request subscription"
msgstr "Abonnement aanvragen"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "Vereist"
@@ -6720,7 +6908,7 @@ msgid "Reset zoom"
msgstr "Reset zoom"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6731,7 +6919,7 @@ msgid "Resource deleted"
msgstr "Bron verwijderd"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "Hulpbronnen"
@@ -6743,18 +6931,18 @@ msgstr "Er ontbreken hulpbronnen uit dit sjabloon."
msgid "Restore initial value."
msgstr "Oorspronkelijke waarde herstellen."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "Haal de ingeschakelde status op uit het gegeven dictaat van de hostvariabelen. De ingeschakelde variabele kan worden gespecificeerd met behulp van puntnotatie, bijvoorbeeld: 'foo.bar'"
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "Teruggeven"
@@ -6774,7 +6962,7 @@ msgstr "Retourneert resultaten die voldoen aan dit filter en aan andere filters.
msgid "Returns results that satisfy this one or any other filters."
msgstr "Retourneert resultaten die voldoen aan dit filter of aan andere filters."
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6789,7 +6977,7 @@ msgstr "Alles terugzetten"
msgid "Revert all to default"
msgstr "Alles terugzetten naar standaardinstellingen"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "Veld terugzetten op eerder opgeslagen waarde"
@@ -6801,13 +6989,13 @@ msgstr "Instellingen terugzetten"
msgid "Revert to factory default."
msgstr "Terugzetten op fabrieksinstellingen."
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "Herziening"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "Herziening #"
@@ -6827,56 +7015,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "Rol"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "Rollen"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "Uitvoeren"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "Opdracht uitvoeren"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "Een gezondheidscontrole op de instantie uitvoeren"
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "Ad-hoc-opdracht uitvoeren"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "Opdracht uitvoeren"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "Uitvoeren om de"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "Uitvoerfrequentie"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "Uitvoeren op"
@@ -6884,25 +7079,30 @@ msgstr "Uitvoeren op"
msgid "Run type"
msgstr "Uitvoertype"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "In uitvoering"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "Handlers die worden uitgevoerd"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "Taken in uitvoering"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "Taken in uitvoering"
@@ -6928,7 +7128,7 @@ msgstr "SOCIAAL"
msgid "SSH password"
msgstr "SSH-wachtwoord"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "SSL-verbinding"
@@ -6938,36 +7138,36 @@ msgid "START"
msgstr "BEGINNEN"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "STATUS:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "Zat"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "Zaterdag"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6993,12 +7193,16 @@ msgstr "Opslaan gelukt!"
msgid "Schedule"
msgstr "Schema"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "Details van schema"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "Details van schema"
@@ -7010,7 +7214,7 @@ msgstr "Schema is actief"
msgid "Schedule is inactive"
msgstr "Schema is actief"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "Er ontbreekt een regel in het schema"
@@ -7021,30 +7225,34 @@ msgstr "Schema niet gevonden."
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "Schema's"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "Bereik"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "Eerste scrollen"
@@ -7062,7 +7270,7 @@ msgid "Scroll previous"
msgstr "Vorige scrollen"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "Zoeken"
@@ -7070,12 +7278,12 @@ msgstr "Zoeken"
msgid "Search is disabled while the job is running"
msgstr "Zoeken is uitgeschakeld terwijl de taak wordt uitgevoerd"
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "Knop Zoekopdracht verzenden"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "Input voor tekst zoeken"
@@ -7083,24 +7291,24 @@ msgstr "Input voor tekst zoeken"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "Searching by ansible_facts requires special syntax. Refer to the"
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "Seconde"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "Seconden"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "Zie fouten links"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7116,7 +7324,7 @@ msgstr "Type toegangsgegevens selecteren"
msgid "Select Groups"
msgstr "Groepen selecteren"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "Hosts selecteren"
@@ -7124,7 +7332,7 @@ msgstr "Hosts selecteren"
msgid "Select Input"
msgstr "Input selecteren"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "Instanties selecteren"
@@ -7132,7 +7340,7 @@ msgstr "Instanties selecteren"
msgid "Select Items"
msgstr "Items selecteren"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "Items in lijst selecteren"
@@ -7140,7 +7348,7 @@ msgstr "Items in lijst selecteren"
msgid "Select Labels"
msgstr "Labels selecteren"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "Rollen selecteren om toe te passen"
@@ -7152,25 +7360,27 @@ msgstr "Teams selecteren"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "Selecteer een JSON-geformatteerde serviceaccountsleutel om de volgende velden automatisch in te vullen."
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "Selecteer een knooppunttype"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "Selecteer een brontype"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "Selecteer een vertakking voor de taaksjabloon. Deze vertakking wordt toegepast op alle taaksjabloonknooppunten die vragen naar een vertakking."
+#~ msgid ""
+#~ "Select a branch for the job template. This branch is applied to\n"
+#~ "all job template nodes that prompt for a branch."
+#~ msgstr "Selecteer een vertakking voor de taaksjabloon. Deze vertakking wordt toegepast op alle taaksjabloonknooppunten die vragen naar een vertakking."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:48
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch"
msgstr "Selecteer een vertakking voor de workflow. Deze vertakking wordt toegepast op alle taaksjabloonknooppunten die vragen naar een vertakking"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "Selecteer een vertakking voor de workflow. Deze vertakking wordt toegepast op alle jobsjabloonknooppunten die vragen naar een vertakking."
@@ -7186,16 +7396,16 @@ msgstr "Taak selecteren om deze te annuleren"
msgid "Select a metric"
msgstr "Metriek selecteren"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "Module selecteren"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "Draaiboek selecteren"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "Selecteer een project voordat u de uitvoeringsomgeving bewerkt."
@@ -7204,8 +7414,8 @@ msgid "Select a question to delete"
msgstr "Selecteer een vraag om te verwijderen"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "Rij selecteren om deze goed te keuren"
+#~ msgid "Select a row to approve"
+#~ msgstr "Rij selecteren om deze goed te keuren"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7213,10 +7423,10 @@ msgid "Select a row to delete"
msgstr "Rij selecteren om deze te verwijderen"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "Rij selecteren om deze te weigeren"
+#~ msgid "Select a row to deny"
+#~ msgstr "Rij selecteren om deze te weigeren"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "Rij selecteren om deze te ontkoppelen"
@@ -7225,49 +7435,51 @@ msgid "Select a subscription"
msgstr "Abonnement selecteren"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "Waarde voor dit veld selecteren"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "Selecteer een webhookservice."
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "Alles selecteren"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "Type activiteit selecteren"
@@ -7283,7 +7495,7 @@ msgstr "Instantie en metriek selecteren om grafiek te tonen"
msgid "Select an instance to run a health check."
msgstr "Selecteer een instantie om een gezondheidscontrole uit te voeren."
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "Selecteer een inventaris voor de workflow. Deze inventaris wordt toegepast op alle workflowknooppunten die vragen naar een inventaris."
@@ -7291,30 +7503,39 @@ msgstr "Selecteer een inventaris voor de workflow. Deze inventaris wordt toegepa
msgid "Select an option"
msgstr "Kies een optie"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "Selecteer een organisatie voordat u de standaard uitvoeringsomgeving bewerkt."
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "Selecteer toegangsgegevens om toegang te krijgen tot de knooppunten waartegen deze taak uitgevoerd zal worden. U kunt slechts één set toegangsgegevens van iedere soort kiezen. In het geval van machine-toegangsgegevens (SSH) moet u, als u 'melding bij opstarten' aanvinkt zonder toegangsgegevens te kiezen, bij het opstarten de machinetoegangsgegevens kiezen. Als u toegangsgegevens selecteert en 'melding bij opstarten' aanvinkt, worden de geselecteerde toegangsgegevens de standaardtoegangsgegevens en kunnen deze bij het opstarten gewijzigd worden."
+#~ msgid ""
+#~ "Select credentials for accessing 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 "Selecteer toegangsgegevens om toegang te krijgen tot de knooppunten waartegen deze taak uitgevoerd zal worden. U kunt slechts één set toegangsgegevens van iedere soort kiezen. In het geval van machine-toegangsgegevens (SSH) moet u, als u 'melding bij opstarten' aanvinkt zonder toegangsgegevens te kiezen, bij het opstarten de machinetoegangsgegevens kiezen. Als u toegangsgegevens selecteert en 'melding bij opstarten' aanvinkt, worden de geselecteerde toegangsgegevens de standaardtoegangsgegevens en kunnen deze bij het opstarten gewijzigd worden."
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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 "Kies uit de lijst mappen die in het basispad van het project gevonden zijn. Het basispad en de map van het draaiboek vormen samen het volledige pad dat gebruikt wordt op draaiboeken te vinden."
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "Items in lijst selecteren"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7330,13 +7551,13 @@ msgstr "Optie(s) selecteren"
msgid "Select period"
msgstr "Periode selecteren"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "Rollen selecteren om toe te passen"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "Bronpad selecteren"
@@ -7358,76 +7579,92 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Selecteer de instantiegroepen waar deze inventaris op uitgevoerd wordt."
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "Selecteer de instantiegroepen waar dit taaksjabloon\n"
-"op uitgevoerd wordt."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr ""
+#~ "Selecteer de instantiegroepen waar dit taaksjabloon\n"
+#~ "op uitgevoerd wordt."
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt."
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "Selecteer de toepassing waartoe dit token zal behoren, of laat dit veld leeg om een persoonlijk toegangstoken aan te maken."
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "Selecteer de toepassing waartoe dit token zal behoren, of laat dit veld leeg om een persoonlijk toegangstoken aan te maken."
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "Selecteer de toegangsgegevens die u wilt gebruiken bij het aanspreken van externe hosts om de opdracht uit te voeren. Kies de toegangsgegevens die de gebruikersnaam en de SSH-sleutel of het wachtwoord bevatten die Ansible nodig heeft om aan te melden bij de hosts of afstand."
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "Selecteer de uitvoeringsomgeving voor deze taaksjabloon."
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
msgstr "Selecteer de inventaris met de hosts waarvan u wilt dat deze taak ze beheert."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "Selecteer het inventarisbestand dat gesynchroniseerd moet worden door deze bron. U kunt kiezen uit het uitklapbare menu of een bestand invoeren in het invoerveld."
+#~ 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 "Selecteer het inventarisbestand dat gesynchroniseerd moet worden door deze bron. U kunt kiezen uit het uitklapbare menu of een bestand invoeren in het invoerveld."
#: components/HostForm/HostForm.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "Selecteer de inventaris waartoe deze host zal behoren."
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "Selecteer het draaiboek dat uitgevoerd moet worden door deze taak."
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "Selecteer het project dat het draaiboek bevat waarvan u wilt dat deze taak hem uitvoert."
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr "Selecteer het project dat het draaiboek bevat waarvan u wilt dat deze taak hem uitvoert."
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "Selecteer het Ansible Automation Platform-abonnement dat u wilt gebruiken"
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "Selecteer {0}"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7449,7 +7686,7 @@ msgstr "Selecteer {0}"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "Geselecteerd"
@@ -7460,20 +7697,20 @@ msgstr "Geselecteerd"
msgid "Selected Category"
msgstr "Geselecteerde categorie"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "Het geselecteerde datumbereik moet ten minste 1 geplande gebeurtenis hebben."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "Afzender e-mail"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "Afzender e-mailbericht"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "September"
@@ -7482,7 +7719,7 @@ msgid "Service account JSON file"
msgstr "JSON-bestand service-account"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "Waarde instellen voor dit veld"
@@ -7494,7 +7731,7 @@ msgstr "Stel in hoeveel dagen aan gegevens er moet worden bewaard."
msgid "Set preferences for data collection, logos, and logins"
msgstr "Stel voorkeuren in voor gegevensverzameling, logo's en aanmeldingen"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "Stel bronpad in op"
@@ -7502,7 +7739,7 @@ msgstr "Stel bronpad in op"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "Zet de instantie aan of uit. Indien uitgeschakeld, zullen er geen taken aan deze instantie worden toegewezen."
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "Ingesteld op openbaar of vertrouwelijk, afhankelijk van de beveiliging van het toestel van de klant."
@@ -7510,7 +7747,7 @@ msgstr "Ingesteld op openbaar of vertrouwelijk, afhankelijk van de beveiliging v
msgid "Set type"
msgstr "Type instellen"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "Zet type op uitgeschakeld voor verwant zoekveld fuzzy zoekopdrachten"
@@ -7540,8 +7777,8 @@ msgstr "Naam instellen"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "Instellingen"
@@ -7550,17 +7787,17 @@ msgstr "Instellingen"
msgid "Show"
msgstr "Tonen"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "Wijzigingen tonen"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "Wijzigingen tonen"
@@ -7577,72 +7814,72 @@ msgstr "Minder tonen"
msgid "Show only root groups"
msgstr "Alleen wortelgroepen tonen"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "Aanmelden met Azure AD"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "Aanmelden met GitHub"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "Aanmelden met GitHub Enterprise"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "Aanmelden met GitHub Enterprise-organisaties"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "Aanmelden met GitHub Enterprise-teams"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "Aanmelden met GitHub-organisaties"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "Aanmelden met GitHub-teams"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "Aanmelden met Google"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "Aanmelden met SAML"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "Aanmelden met SAML {samlIDP}"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "Eenvoudige sleutel selecteren"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "Tags overslaan"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "Tags overslaan is nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt overslaan. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags."
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr "Tags overslaan is nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt overslaan. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7650,11 +7887,16 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "Tags overslaan is nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt overslaan. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie van Ansible Tower voor meer informatie over het gebruik van tags."
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "Overgeslagen"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "Overgeslagen"
@@ -7676,15 +7918,15 @@ msgid "Smart Inventory not found."
msgstr "Smart-inventaris niet gevonden."
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "Smart-hostfilter"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "Smart-inventaris"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "Sommige van de vorige stappen bevatten fouten"
@@ -7706,51 +7948,53 @@ msgid "Sort"
msgstr "Sorteren"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "Bron"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "Vertakking broncontrole"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "Vertakking/tag/binding broncontrole"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "Toegangsgegevens bronbeheer"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "Refspec broncontrole"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "Herziening broncontrole"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "Type broncontrole"
@@ -7758,34 +8002,34 @@ msgstr "Type broncontrole"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "URL broncontrole"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "Update broncontrole"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "Brontelefoonnummer"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "Bronvariabelen"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "Taak bronworkflow"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "Vertakking broncontrole"
@@ -7793,12 +8037,12 @@ msgstr "Vertakking broncontrole"
msgid "Source details"
msgstr "Broninformatie"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "Brontelefoonnummer"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "Bronvariabelen"
@@ -7806,46 +8050,46 @@ msgstr "Bronvariabelen"
msgid "Sourced from a project"
msgstr "Afkomstig uit een project"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "Bronnen"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr "Specificeer HTTP-koppen in JSON-formaat. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr "Kies een berichtkleur. Mogelijke kleuren zijn kleuren uit de hexidecimale kleurencode (bijvoorbeeld: #3af of #789abc)."
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "Geef een bereik op voor de toegang van de token"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "Geef een bereik op voor de toegang van de token"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "Specificeer de voorwaarden waaronder dit knooppunt moet worden uitgevoerd"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "Standaardfout"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "Standaardoutput"
+#~ msgid "Standard Out"
+#~ msgstr "Standaardoutput"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "Tabblad Standaardfout"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "Tabblad Standaardoutput"
+#~ msgid "Standard out tab"
+#~ msgstr "Tabblad Standaardoutput"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7854,7 +8098,7 @@ msgstr "Tabblad Standaardoutput"
msgid "Start"
msgstr "Starten"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "Starttijd"
@@ -7863,16 +8107,16 @@ msgstr "Starttijd"
msgid "Start date"
msgstr "Startdatum"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "Startdatum/-tijd"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "Startbericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "Body startbericht"
@@ -7889,27 +8133,27 @@ msgstr "Start synchronisatie bron"
msgid "Start time"
msgstr "Starttijd"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "Gestart"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -7917,9 +8161,9 @@ msgstr "Gestart"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "Status"
@@ -7937,7 +8181,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "Indienen"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7945,7 +8189,8 @@ msgid ""
"the revision specified by the main project.\n"
"This is equivalent to specifying the --remote\n"
"flag to git submodule update."
-msgstr "Submodules volgen de laatste binding op\n"
+msgstr ""
+"Submodules volgen de laatste binding op\n"
"hun hoofdvertakking (of een andere vertakking die is gespecificeerd in\n"
".gitmodules). Als dat niet zo is, dan worden de submodules bewaard tijdens de revisie die door het hoofdproject gespecificeerd is.\n"
"Dit is gelijk aan het specificeren van de vlag --remote bij de update van de git-submodule."
@@ -7988,6 +8233,7 @@ msgstr "Tabel Abonnementen"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -7995,22 +8241,22 @@ msgstr "Subversie"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "Geslaagd"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "Succesbericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "Body succesbericht"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8020,24 +8266,24 @@ msgstr "Geslaagd"
msgid "Successful jobs"
msgstr "Succesvolle taken"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "Succesvol gekopieerd naar klembord!"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "Zon"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "Zondag"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "Vragenlijst"
@@ -8049,7 +8295,7 @@ msgstr "Enquête uitgeschakeld"
msgid "Survey Enabled"
msgstr "Enquête ingeschakeld"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "Volgorde vragen enquête"
@@ -8057,20 +8303,20 @@ msgstr "Volgorde vragen enquête"
msgid "Survey Toggle"
msgstr "Vragenlijst schakelen"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "Modus Voorbeeld van vragenlijst"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "Synchroniseren"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "Project synchroniseren"
@@ -8084,11 +8330,11 @@ msgstr "Alles synchroniseren"
msgid "Sync all sources"
msgstr "Alle bronnen synchroniseren"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "Synchronisatiefout"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "Synchroniseren voor revisie"
@@ -8116,7 +8362,7 @@ msgstr "Systeembeheerder"
msgid "System Auditor"
msgstr "Systeemcontroleur"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "Systeemwaarschuwing"
@@ -8134,20 +8380,20 @@ msgid "TACACS+ settings"
msgstr "TACACS+ instellingen"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "Tabbladen"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "Tags zijn nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt uitvoeren. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags."
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr "Tags zijn nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt uitvoeren. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags."
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8155,24 +8401,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "Tags zijn nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt uitvoeren. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie van Ansible Tower voor meer informatie over het gebruik van tags."
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "Tags voor de melding"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "Tags voor de melding (optioneel)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "Doel-URL"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "Taak"
@@ -8180,7 +8431,7 @@ msgstr "Taak"
msgid "Task Count"
msgstr "Aantal taken"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "Taak gestart"
@@ -8197,24 +8448,24 @@ msgstr "Team"
msgid "Team Roles"
msgstr "Teamrollen"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "Taak niet gevonden."
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8222,27 +8473,27 @@ msgstr "Taak niet gevonden."
msgid "Teams"
msgstr "Teams"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "Sjabloon"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "Template copied successfully"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "Sjabloon niet gevonden."
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8251,7 +8502,7 @@ msgstr "Sjablonen"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "Test"
@@ -8272,11 +8523,11 @@ msgid "Test passed"
msgstr "Test geslaagd"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "Tekst"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "Tekstgebied"
@@ -8284,19 +8535,23 @@ msgstr "Tekstgebied"
msgid "Textarea"
msgstr "Tekstgebied"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "De waarde is niet gevonden. Voer een geldige waarde in of selecteer er een."
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "De"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "Het type toekenning dat de gebruiker moet gebruiken om tokens te verkrijgen voor deze toepassing"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8304,47 +8559,92 @@ msgid ""
msgstr "De tijd (in seconden) voordat de e-mailmelding de host probeert te bereiken en een time-out oplevert. Varieert van 1 tot 120 seconden."
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "De tijd (in seconden) die het heeft geduurd voordat de taak werd geannuleerd. Standaard 0 voor geen taak time-out."
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr "De tijd (in seconden) die het heeft geduurd voordat de taak werd geannuleerd. Standaard 0 voor geen taak time-out."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
msgstr "De basis-URL van de Grafana-server - het /api/annotations-eindpunt wordt automatisch toegevoegd aan de basis-URL voor Grafana."
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "De uitvoeringsomgeving die zal worden gebruikt voor taken binnen deze organisatie. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op project-, taaksjabloon- of workflowniveau."
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "De uitvoeringsomgeving die zal worden gebruikt voor taken die dit project gebruiken. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op taaksjabloon- of workflowniveau."
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "De uitvoeringsomgeving die zal worden gebruikt bij het starten van\n"
-"dit taaksjabloon. De geselecteerde uitvoeringsomgeving kan worden opgeheven door\n"
-"door expliciet een andere omgeving aan dit taaksjabloon toe te wijzen."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+#~ "De uitvoeringsomgeving die zal worden gebruikt bij het starten van\n"
+#~ "dit taaksjabloon. De geselecteerde uitvoeringsomgeving kan worden opgeheven door\n"
+#~ "door expliciet een andere omgeving aan dit taaksjabloon toe te wijzen."
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "De eerste haalt alle referenties op. De tweede haalt het Github pullverzoek nummer 62 op, in dit voorbeeld moet de vertakking `pull/62/head` zijn."
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "De volledige imagelocatie, inclusief het containerregister, de imagenaam en de versietag."
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8352,25 +8652,36 @@ msgid ""
"documentation for more details."
msgstr "Maximumaantal hosts dat beheerd mag worden door deze organisatie. De standaardwaarde is 0, wat betekent dat er geen limiet is. Raadpleeg de Ansible-documentatie voor meer informatie."
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "Het aantal parallelle of gelijktijdige processen dat tijdens de uitvoering van het draaiboek gebruikt wordt. Een lege waarde, of een waarde minder dan 1 zal de Ansible-standaard gebruiken die meestal 5 is. Het standaard aantal vorken kan overgeschreven worden met een wijziging naar"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 "Het aantal parallelle of gelijktijdige processen dat tijdens de uitvoering van het draaiboek gebruikt wordt. Een lege waarde, of een waarde minder dan 1 zal de Ansible-standaard gebruiken die meestal 5 is. Het standaard aantal vorken kan overgeschreven worden met een wijziging naar"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "Het aantal parallelle of gelijktijdige processen dat gebruikt wordt bij het uitvoeren van het draaiboek. Als u geen waarde invoert, wordt de standaardwaarde van het Ansible-configuratiebestand gebruikt. U vindt meer informatie"
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "De door u opgevraagde pagina kan niet worden gevonden."
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "Het patroon dat gebruikt wordt om hosts in de inventaris te targeten. Door het veld leeg te laten, worden met alle en * alle hosts in de inventaris getarget. U kunt meer informatie vinden over hostpatronen van Ansible"
@@ -8378,7 +8689,7 @@ msgstr "Het patroon dat gebruikt wordt om hosts in de inventaris te targeten. Do
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "Het project wordt momenteel gesynchroniseerd en de revisie zal beschikbaar zijn nadat de synchronisatie is voltooid."
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "Het project moet zijn gesynchroniseerd voordat een revisie beschikbaar is."
@@ -8396,7 +8707,7 @@ msgstr "De aan dit knooppunt gekoppelde bron is verwijderd."
msgid "The search filter did not produce any results…"
msgstr "The search filter did not produce any results…"
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8411,7 +8722,8 @@ msgid ""
"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 "Er zijn geen draaiboekmappen in {project_base_dir} beschikbaar.\n"
+msgstr ""
+"Er zijn geen draaiboekmappen in {project_base_dir} beschikbaar.\n"
"Die map leeg of alle inhoud ervan is al\n"
"toegewezen aan andere projecten. Maak daar een nieuwe directory en zorg ervoor dat de draaiboekbestanden kunnen worden gelezen door de 'awx'-systeemgebruiker,\n"
"of laat {brandName} uw draaiboeken direct ophalen uit broncontrole met behulp van de optie Type broncontrole hierboven."
@@ -8420,7 +8732,7 @@ msgstr "Er zijn geen draaiboekmappen in {project_base_dir} beschikbaar.\n"
msgid "There must be a value in at least one input"
msgstr "Er moet een waarde zijn in ten minste één input"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "Er is een probleem met inloggen. Probeer het opnieuw."
@@ -8432,31 +8744,36 @@ msgstr "Er is een fout opgetreden bij het laden van deze inhoud. Laad de pagina
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "Er is een fout opgetreden bij het parseren van het bestand. Controleer de opmaak van het bestand en probeer het opnieuw."
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "Er is een fout opgetreden bij het opslaan van de workflow."
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "Dit zijn de modules waar {brandName} commando's tegen kan uitvoeren."
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "Dit zijn de verbositeitsniveaus voor standaardoutput van de commando-uitvoering die worden ondersteund."
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "Deze argumenten worden gebruikt met de gespecificeerde module."
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "Deze argumenten worden gebruikt met de gespecificeerde module. U kunt informatie over {0} vinden door te klikken"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "Derde"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "Dit project moet worden bijgewerkt"
@@ -8478,15 +8795,15 @@ msgstr "Deze actie ontkoppelt de volgende rol van {0}:"
msgid "This action will disassociate the following:"
msgstr "Deze actie ontkoppelt het volgende:"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Deze containergroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Deze toegangsgegevens worden momenteel door andere bronnen gebruikt. Weet u zeker dat u ze wilt verwijderen?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangsgegevens en kan niet worden verwijderd"
@@ -8494,10 +8811,18 @@ msgstr "Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangs
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "Deze gegevens worden gebruikt om\n"
-"toekomstige versies van de software te verbeteren en om\n"
-"Insights for Ansible Automation Platform te bieden."
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr ""
+#~ "Deze gegevens worden gebruikt om\n"
+#~ "toekomstige versies van de software te verbeteren en om\n"
+#~ "Insights for Ansible Automation Platform te bieden."
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
@@ -8506,7 +8831,7 @@ msgid ""
"streamline customer experience and success."
msgstr "Deze gegevens worden gebruikt om toekomstige versies van de Tower-software en de ervaring en uitkomst voor klanten te verbeteren."
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u deze wilt verwijderen?"
@@ -8515,17 +8840,17 @@ msgstr "Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. W
msgid "This feature is deprecated and will be removed in a future release."
msgstr "Deze functie is afgeschaft en zal worden verwijderd in een toekomstige versie."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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 "Dit veld wordt genegeerd, tenzij er een Ingeschakelde variabele is ingesteld. Als de ingeschakelde variabele overeenkomt met deze waarde, wordt de host bij het importeren ingeschakeld."
#: components/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "Dit veld mag niet leeg zijn"
+#~ msgid "This field is must not be blank"
+#~ msgstr "Dit veld mag niet leeg zijn"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "Dit veld mag niet leeg zijn."
+#~ msgid "This field is must not be blank."
+#~ msgstr "Dit veld mag niet leeg zijn."
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8556,7 +8881,7 @@ msgstr "Dit veld moet een getal zijn en een waarde hebben die lager is dan {max}
msgid "This field must be a regular expression"
msgstr "Dit veld moet een reguliere expressie zijn"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "Dit veld moet een geheel getal zijn"
@@ -8569,12 +8894,13 @@ msgstr "Dit veld moet uit ten minste {0} tekens bestaan"
msgid "This field must be at least {min} characters"
msgstr "Dit veld moet uit ten minste {min} tekens bestaan"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "Dit veld moet groter zijn dan 0"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8582,6 +8908,10 @@ msgstr "Dit veld moet groter zijn dan 0"
msgid "This field must not be blank"
msgstr "Dit veld mag niet leeg zijn"
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "Dit veld mag geen spaties bevatten"
@@ -8598,7 +8928,7 @@ msgstr "Dit veld mag niet langer zijn dan {max} tekens"
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem."
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?"
@@ -8606,15 +8936,15 @@ msgstr "Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet u
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "Deze inventaris wordt toegepast op alle workflowknooppunten binnen deze workflow ({0}) die vragen naar een inventaris."
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Deze inventaris wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr "Deze inventarisbron wordt momenteel door andere bronnen gebruikt die erop vertrouwen. Weet u zeker dat u hem wilt verwijderen?"
-#: screens/Application/Applications.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "Dit is de enige keer dat het cliëntgeheim wordt getoond."
@@ -8622,19 +8952,19 @@ msgstr "Dit is de enige keer dat het cliëntgeheim wordt getoond."
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "Dit is de enige keer dat de tokenwaarde en de bijbehorende ververste tokenwaarde worden getoond."
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Deze taaksjabloon wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "Deze organisatie wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u haar wilt verwijderen?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Dit project wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u het wilt verwijderen?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "Dit project wordt momenteel gesynchroniseerd en er kan pas op worden geklikt nadat het synchronisatieproces is voltooid"
@@ -8654,6 +8984,18 @@ msgstr "Deze stap bevat fouten"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "Deze waarde komt niet overeen met het wachtwoord dat u eerder ingevoerd heeft. Bevestig dat wachtwoord."
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8664,27 +9006,27 @@ msgstr "Hiermee worden alle configuratiewaarden op deze pagina teruggezet op de
msgid "This workflow does not have any nodes configured."
msgstr "Er zijn voor deze workflow geen knooppunten geconfigureerd."
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "Deze sjabloon voor workflowtaken wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u hem wilt verwijderen?"
-#: components/Schedule/shared/FrequencyDetailSubform.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "Do"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "Donderdag"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "Tijd"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8694,7 +9036,7 @@ msgid ""
"performed."
msgstr "Tijd in seconden waarmee een project actueel genoemd kan worden. Tijdens taken in uitvoering en terugkoppelingen wil het taaksysteem de tijdstempel van de meest recente projectupdate bekijken. Indien dit ouder is dan de Cache-timeout wordt het project niet gezien als actueel en moet er een nieuwe projectupdate uitgevoerd worden."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8703,24 +9045,24 @@ msgid ""
"inventory sync will be performed."
msgstr "Tijd in seconden waarmee een inventarissynchronisatie actueel genoemd kan worden. Tijdens taken in uitvoering en terugkoppelingen zal het taaksysteem de tijdstempel van de meest recente synchronisatie bekijken. Indien dit ouder is dan de Cache-timeout wordt het project niet gezien als actueel en moet er een nieuwe inventarissynchronisatie uitgevoerd worden."
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "Er is een time-out opgetreden"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "Time-out"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "Time-out minuten"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "Time-out seconden"
@@ -8728,11 +9070,11 @@ msgstr "Time-out seconden"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "To create a smart inventory using ansible facts, go to the smart inventory screen."
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "Om de enquêtevragen te herordenen, sleept u ze naar de gewenste locatie."
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "Legenda wisselen"
@@ -8740,12 +9082,12 @@ msgstr "Legenda wisselen"
msgid "Toggle Password"
msgstr "Wachtwoord wisselen"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "Gereedschap wisselen"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "Host wisselen"
@@ -8784,7 +9126,7 @@ msgstr "Schema wisselen"
msgid "Toggle tools"
msgstr "Gereedschap wisselen"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "Token"
@@ -8798,11 +9140,11 @@ msgstr "Tokeninformatie"
msgid "Token not found."
msgstr "Token niet gevonden."
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8813,37 +9155,42 @@ msgid "Tools"
msgstr "Gereedschap"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "Bovenkant paginering"
+#~ msgid "Top Pagination"
+#~ msgstr "Bovenkant paginering"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "Topology View"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "Totale taken"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "Totaalaantal knooppunten"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "Totale taken"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "Submodules tracken"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "Submodules laatste binding op vertakking tracken"
@@ -8853,23 +9200,23 @@ msgid "Trial"
msgstr "Proefperiode"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "True"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "Di"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "Dinsdag"
@@ -8878,13 +9225,13 @@ msgstr "Dinsdag"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -8892,13 +9239,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -8906,15 +9253,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -8930,7 +9277,7 @@ msgstr "Soort"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "Soortdetails"
@@ -8948,11 +9295,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "Kan inventaris op een host niet wijzigen"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "Niet beschikbaar"
@@ -8970,7 +9321,7 @@ msgstr "Volgen ongedaan maken"
msgid "Unlimited"
msgstr "Onbeperkt"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8992,28 +9343,28 @@ msgstr "Tekenreeks niet-herkende dag"
msgid "Unsaved changes modal"
msgstr "Modus Niet-opgeslagen wijzigingen"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "Herziening updaten bij opstarten"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "Update bij opstarten"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "Update voor projectupdate"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "Update-opties"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "Herziening bijwerken bij starten taak"
@@ -9021,7 +9372,7 @@ msgstr "Herziening bijwerken bij starten taak"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "Instellingen bijwerken die betrekking hebben op taken binnen {brandName}"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "Webhooksleutel bijwerken"
@@ -9038,12 +9389,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "Upload een Red Hat-abonnementsmanifest met uw abonnement. Ga naar <0>abonnementstoewijzingen0> op het Red Hat-klantenportaal om uw abonnementsmanifest te genereren."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "SSL gebruiken"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "TLS gebruiken"
@@ -9054,21 +9405,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr "Gebruik aangepaste berichten om de inhoud te wijzigen van berichten die worden verzonden wanneer een taak start, slaagt of mislukt. Gebruik accolades om informatie over de taak te openen:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "Gebruikte capaciteit"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "Gebruikte capaciteit"
@@ -9107,34 +9479,39 @@ msgstr "Gebruikersanalyses"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "Analyse van gebruikers en Insights"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "Analyse van gebruikers en Insights"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "Gebruikersdetails"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "Gebruiker niet gevonden."
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "Gebruikerstokens"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9149,11 +9526,11 @@ msgstr "Gebruikersnaam"
msgid "Username / password"
msgstr "Gebruikersnaam/wachtwoord"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9165,35 +9542,44 @@ msgstr "Gebruikers"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "Variabelen"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "Variabelen gevraagd"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Wachtwoord kluis"
@@ -9202,21 +9588,21 @@ msgstr "Wachtwoord kluis"
msgid "Vault password | {credId}"
msgstr "Wachtwoord kluis | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "Uitgebreid"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "Verbositeit"
@@ -9228,8 +9614,8 @@ msgstr "Versie"
msgid "View Azure AD settings"
msgstr "Azure AD-instellingen weergeven"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "Details toegangsgegevens weergeven"
@@ -9245,15 +9631,15 @@ msgstr "GitHub-instellingen weergeven"
msgid "View Google OAuth 2.0 settings"
msgstr "Instellingen Google OAuth 2.0 weergeven"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "Hostdetails weergeven"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "Instantiedetails"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9267,11 +9653,11 @@ msgstr "Inventarisgroepen weergeven"
msgid "View Inventory Host Details"
msgstr "Hostdetails van inventaris weergeven"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "JSON-voorbeelden op <0>www.json.org0> weergeven"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "Taakdetails weergeven"
@@ -9295,11 +9681,11 @@ msgstr "Instellingen diversen authenticatie weergeven"
msgid "View Miscellaneous System settings"
msgstr "Diverse systeeminstellingen weergeven"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "Organisatiedetails weergeven"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "Projectdetails weergeven"
@@ -9320,8 +9706,8 @@ msgstr "Schema's weergeven"
msgid "View Settings"
msgstr "Instellingen weergeven"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "Vragenlijst weergeven"
@@ -9329,12 +9715,12 @@ msgstr "Vragenlijst weergeven"
msgid "View TACACS+ settings"
msgstr "TACACS+ instellingen weergeven"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "Teamdetails weergeven"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "Sjabloondetails weergeven"
@@ -9342,7 +9728,7 @@ msgstr "Sjabloondetails weergeven"
msgid "View Tokens"
msgstr "Tokens weergeven"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "Gebruikersdetails weergeven"
@@ -9350,11 +9736,11 @@ msgstr "Gebruikersdetails weergeven"
msgid "View User Interface settings"
msgstr "Instellingen gebruikersinterface weergeven"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "Details workflowgoedkeuring weergeven"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "YAML-voorbeelden weergeven op <0>docs.ansible.com0>"
@@ -9363,15 +9749,15 @@ msgstr "YAML-voorbeelden weergeven op <0>docs.ansible.com0>"
msgid "View activity stream"
msgstr "Activiteitenlogboek weergeven"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "Geef alle toegangsgegevens weer."
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "Geef alle hosts weer."
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "Geef alle inventarissen weer."
@@ -9384,7 +9770,7 @@ msgstr "Geef alle inventarishosts weer."
msgid "View all Jobs"
msgstr "Alle taken weergeven"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "Geef alle taken weer."
@@ -9393,24 +9779,24 @@ msgstr "Geef alle taken weer."
msgid "View all Notification Templates."
msgstr "Geef alle berichtsjablonen weer."
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "Geef alle organisaties weer."
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "Geef alle projecten weer."
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "Geef alle teams weer."
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "Geef alle sjablonen weer."
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "Geef alle gebruikers weer."
@@ -9418,24 +9804,24 @@ msgstr "Geef alle gebruikers weer."
msgid "View all Workflow Approvals."
msgstr "Geef alle workflowgoedkeuringen weer."
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "Geef alle toepassingen weer."
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "Alle typen toegangsgegevens weergeven"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "Alle uitvoeringsomgevingen weergeven"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "Alle instantiegroepen weergeven"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "Alle beheertaken weergeven"
@@ -9473,13 +9859,13 @@ msgid "View smart inventory host details"
msgstr "Hostdetails Smart-inventaris weergeven"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "Weergaven"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "Visualizer"
@@ -9487,8 +9873,8 @@ msgstr "Visualizer"
msgid "WARNING:"
msgstr "WAARSCHUWING:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "Wachten"
@@ -9498,7 +9884,7 @@ msgid "Waiting for job output…"
msgstr "Waiting for job output…"
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "Waarschuwing"
@@ -9520,80 +9906,90 @@ msgstr "We waren niet in staat om de aan deze account gekoppelde abonnementen te
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Webhook toegangsgegevens"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Toegangsgegevens Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Webhooksleutel"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Webhookservice"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "Webhook-URL"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Webhookdetails"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Webhookservices kunnen taken met deze sjabloon voor workflowtaken lanceren door het verzenden van een POST-verzoek naar deze URL."
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Webhookservices kunnen dit gebruiken als een gedeeld geheim."
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhooks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "Wo"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "Woensdag"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "Week"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "Doordeweeks"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "Weekenddag"
@@ -9601,21 +9997,22 @@ msgstr "Weekenddag"
msgid ""
"Welcome to Red Hat Ansible Automation Platform!\n"
"Please complete the steps below to activate your subscription."
-msgstr "Welkom bij Red Hat Ansible Automation Platform! \n"
+msgstr ""
+"Welkom bij Red Hat Ansible Automation Platform! \n"
"Volg de onderstaande stappen om uw abonnement te activeren."
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "Welkom bij {brandName}!"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr "Als dit vakje niet aangevinkt is, worden lokale variabelen samengevoegd met de variabelen die aangetroffen zijn in de externe bron."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9635,28 +10032,29 @@ msgid "Workflow Approval not found."
msgstr "Workflowgoedkeuring niet gevonden."
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "Workflowgoedkeuringen"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "Workflowtaak"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "Workflowtaaksjabloon"
@@ -9680,22 +10078,22 @@ msgstr "Workflowlink"
msgid "Workflow Template"
msgstr "Workflowsjabloon"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "Workflow goedgekeurd bericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "Workflow goedgekeurde berichtbody"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "Workflow geweigerd bericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "Workflow geweigerde berichtbody"
@@ -9705,6 +10103,10 @@ msgstr "Workflow geweigerde berichtbody"
msgid "Workflow documentation"
msgstr "Workflowdocumentatie"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "Workflowtaaksjablonen"
@@ -9717,49 +10119,49 @@ msgstr "Modus Workflowlink"
msgid "Workflow node view modal"
msgstr "Modis Weergave workflowknooppunt"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "Bericht Workflow in behandeling"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "Workflow Berichtenbody in behandeling"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "Workflow Time-outbericht"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "Workflow Berichtbody voor time-out"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "Schrijven"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "Jaar"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "Ja"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9773,7 +10175,7 @@ msgstr "U hebt geen machtiging om de volgende groepen te verwijderen: {itemsUnab
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "U hebt geen machtiging om {pluralizedItemName}: {itemsUnableToDelete} te verwijderen"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "U hebt geen machtiging om het volgende te ontkoppelen: {itemsUnableToDisassociate}"
@@ -9781,10 +10183,11 @@ msgstr "U hebt geen machtiging om het volgende te ontkoppelen: {itemsUnableToDis
msgid ""
"You may apply a number of possible variables in the\n"
"message. For more information, refer to the"
-msgstr "U kunt een aantal mogelijke variabelen in het\n"
+msgstr ""
+"U kunt een aantal mogelijke variabelen in het\n"
"bericht toepassen. Voor meer informatie, raadpleeg de"
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "Uw sessie is verlopen. Log in om verder te gaan waar u gebleven was."
@@ -9810,18 +10213,18 @@ msgstr "Inzoomen"
msgid "Zoom out"
msgstr "Uitzoomen"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "Er wordt een nieuwe webhooksleutel gegenereerd bij het opslaan."
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "Er wordt een nieuwe webhook-URL gegenereerd bij het opslaan."
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "en klik op Herziening updaten bij opstarten"
@@ -9842,7 +10245,7 @@ msgstr "verwijderen annuleren"
msgid "cancel edit login redirect"
msgstr "omleiden inloggen bewerken annuleren"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "opdracht"
@@ -9877,38 +10280,38 @@ msgid "disassociate"
msgstr "loskoppelen"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "documentatie"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "bewerken"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "versleuteld"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "voor meer info."
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "voor meer informatie."
@@ -9916,15 +10319,24 @@ msgstr "voor meer informatie."
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "hier"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "hier."
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "hosts"
@@ -9941,7 +10353,7 @@ msgstr "ldap-gebruiker"
msgid "login type"
msgstr "inlogtype"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "min"
@@ -9954,11 +10366,11 @@ msgid "node"
msgstr "node"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "van"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "optie aan de"
@@ -9979,21 +10391,21 @@ msgstr "per pagina"
msgid "relaunch jobs"
msgstr "taken opnieuw starten"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "sec"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "seconden"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "module selecteren"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "verbositeit selecteren"
+#~ msgid "select verbosity"
+#~ msgstr "verbositeit selecteren"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -10003,8 +10415,8 @@ msgstr "sinds"
msgid "social login"
msgstr "sociale aanmelding"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "Broncontrolevertakking"
@@ -10016,7 +10428,7 @@ msgstr "systeem"
msgid "timed out"
msgstr "time-out"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "wijzigingen wisselen"
@@ -10024,7 +10436,7 @@ msgstr "wijzigingen wisselen"
msgid "updated"
msgstr "bijgewerkt"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "webhooksleutel taaksjabloon voor workflows"
@@ -10048,15 +10460,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10076,7 +10488,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10088,8 +10500,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10117,38 +10529,38 @@ msgstr "{brandName} logo"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} door<0>{username}0>"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} min {seconds} sec"
@@ -10174,4 +10586,4 @@ msgstr "{selectedItemsCount, plural, one {Click to run a health check on the sel
#: components/AppContainer/AppContainer.js:154
msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
-msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
+msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
diff --git a/awx/ui/src/locales/zh/messages.po b/awx/ui/src/locales/zh/messages.po
index 07f0d2d49f..6d4fca71cb 100644
--- a/awx/ui/src/locales/zh/messages.po
+++ b/awx/ui/src/locales/zh/messages.po
@@ -10,100 +10,69 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
+"Plural-Forms: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43
msgid "(Limited to first 10)"
msgstr "(限制为前 10)"
#: components/TemplateList/TemplateListItem.js:103
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr "(启动时提示)"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr "* 此字段将使用指定的凭证从外部 secret 管理系统检索。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr "/ (project root)"
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr "0(普通)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr "0(警告)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr "1(信息)"
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr "1(详细)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr "2(调试)"
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr "2(更多详细内容)"
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr "3(调试)"
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr "4(连接调试)"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr "5(WinRM 调试)"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -119,15 +88,15 @@ msgstr "订阅清单是红帽订阅的一个导出。要生成订阅清单,请
msgid "ALL"
msgstr "所有"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr "API 服务/集成密钥"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr "API 令牌"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr "API 服务/集成密钥"
@@ -136,21 +105,21 @@ msgid "About"
msgstr "关于"
#: routeConfig.js:92
-#: screens/ActivityStream/ActivityStream.js:173
-#: screens/Credential/Credential.js:73
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:64
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
#: screens/Inventory/SmartInventory.js:67
-#: screens/Organization/Organization.js:123
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr "访问"
@@ -158,12 +127,12 @@ msgstr "访问"
msgid "Access Token Expiration"
msgstr "访问令牌过期"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr "帐户 SID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr "帐户令牌"
@@ -171,18 +140,19 @@ msgstr "帐户令牌"
msgid "Action"
msgstr "操作"
-#: components/JobList/JobList.js:245
+#: components/JobList/JobList.js:249
#: components/JobList/JobListItem.js:103
-#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:245
-#: components/TemplateList/TemplateListItem.js:186
-#: screens/ActivityStream/ActivityStream.js:260
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:163
+#: screens/Credential/CredentialList/CredentialList.js:166
#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
@@ -190,27 +160,27 @@ msgstr "操作"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:171
-#: screens/Host/HostList/HostListItem.js:64
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:258
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
#: screens/Inventory/InventoryList/InventoryList.js:222
#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
@@ -219,9 +189,9 @@ msgstr "操作"
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
#: screens/Project/ProjectList/ProjectList.js:225
-#: screens/Project/ProjectList/ProjectListItem.js:214
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -232,32 +202,32 @@ msgstr "操作"
msgid "Actions"
msgstr "操作"
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:268
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr "活动"
#: routeConfig.js:49
-#: screens/ActivityStream/ActivityStream.js:35
-#: screens/ActivityStream/ActivityStream.js:113
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr "活动流"
-#: screens/ActivityStream/ActivityStream.js:116
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr "活动流类型选择器"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr "操作者"
@@ -274,19 +244,19 @@ msgstr "添加链接"
msgid "Add Node"
msgstr "添加节点"
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr "添加问题"
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr "添加角色"
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr "添加团队角色"
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr "添加用户角色"
@@ -331,7 +301,7 @@ msgstr "添加新组"
msgid "Add new host"
msgstr "添加新主机"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:78
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr "添加资源类型"
@@ -352,25 +322,25 @@ msgid "Add workflow template"
msgstr "添加工作流模板"
#: routeConfig.js:113
-#: screens/ActivityStream/ActivityStream.js:184
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr "管理"
-#: components/DataListToolbar/DataListToolbar.js:138
+#: components/DataListToolbar/DataListToolbar.js:139
#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr "高级"
-#: components/Search/AdvancedSearch.js:313
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr "高级搜索文档"
-#: components/Search/AdvancedSearch.js:206
-#: components/Search/AdvancedSearch.js:220
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr "高级搜索值输入"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -378,7 +348,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr "因 SCM 修订版本变更进行每次项目更新后,请在执行作业任务前从所选源刷新清单。这是面向静态内容,如 Ansible 清单 .ini 文件格式。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr "发生次数后"
@@ -387,10 +357,10 @@ msgid "Alert modal"
msgstr "警报模式"
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr "所有"
@@ -402,29 +372,29 @@ msgstr "作业作业类型"
msgid "All jobs"
msgstr "所有作业"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr "允许分支覆写"
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr "允许分支覆写"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr "允许在使用此项目的作业模板中更改 Source Control 分支或修订版本。"
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr "允许的 URI 列表,以空格分开"
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr "始终"
@@ -448,27 +418,27 @@ msgstr "Ansible Tower 文档"
msgid "Answer type"
msgstr "Answer 类型"
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr "回答变量名称"
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr "任何"
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr "应用程序"
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr "应用程序名"
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr "应用程序信息"
@@ -477,57 +447,58 @@ msgstr "应用程序信息"
msgid "Application name"
msgstr "应用程序名"
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr "未找到应用程序。"
#: components/Lookup/ApplicationLookup.js:95
#: routeConfig.js:142
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr "应用程序"
-#: screens/ActivityStream/ActivityStream.js:205
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr "应用程序和令牌"
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr "批准"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr "批准"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr "已批准"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr "已批准 - {0}。详情请参阅活动流。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr "于 {0} - {1} 批准"
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr "4 月"
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr "您确定要取消此作业吗?"
@@ -571,16 +542,16 @@ msgstr "您确定要从 {1} 中删除访问 {0} 吗?这样做会影响团队
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr "您确定要从 {username} 中删除 {0} 吗?"
-#: screens/Job/JobOutput/JobOutput.js:802
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr "您确定要提交取消此任务的请求吗?"
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr "参数"
-#: screens/Job/JobDetail/JobDetail.js:456
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr "工件"
@@ -602,7 +573,7 @@ msgstr "关联模态"
msgid "At least one value must be selected for this field."
msgstr "此字段至少选择一个值。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr "8 月"
@@ -614,18 +585,27 @@ msgstr "身份验证"
msgid "Authorization Code Expiration"
msgstr "授权代码过期"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr "授权授予类型"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr "Auto"
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr "Azure AD"
@@ -634,8 +614,8 @@ msgstr "Azure AD"
msgid "Azure AD settings"
msgstr "Azure AD 设置"
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -668,7 +648,7 @@ msgstr "返回到主机"
msgid "Back to Instance Groups"
msgstr "返回到实例组"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr "返回到实例"
@@ -759,7 +739,7 @@ msgstr "返回到实例组"
msgid "Back to management jobs"
msgstr "返回到管理作业"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -767,11 +747,11 @@ msgid ""
"path used to locate playbooks."
msgstr "用于定位 playbook 的基本路径。位于该路径中的目录将列在 playbook 目录下拉列表中。基本路径和所选 playbook 目录一起提供了用于定位 playbook 的完整路径。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr "基本验证密码"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -787,43 +767,47 @@ msgstr "品牌图像"
msgid "Browse"
msgstr "浏览"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr "浏览......"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
-msgstr "默认情况下,我们会收集关于服务使用情况的分析数据并将其传送到红帽。服务收集的数据分为两类。如需更多信息,请参阅<0>此 Tower 文档页0>。取消选择以下复选框以禁用此功能。"
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr "默认情况下,我们会收集关于服务使用情况的分析数据并将其传送到红帽。服务收集的数据分为两类。如需更多信息,请参阅<0>此 Tower 文档页0>。取消选择以下复选框以禁用此功能。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+msgstr ""
#: screens/TopologyView/Legend.js:74
msgid "C"
msgstr "C"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr "CPU {0}"
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr "缓存超时"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr "缓存超时"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr "缓存超时(秒)"
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,11 +818,13 @@ msgstr "缓存超时(秒)"
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
#: components/Lookup/HostFilterLookup.js:387
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -859,7 +845,7 @@ msgstr "缓存超时(秒)"
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:208
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -868,32 +854,34 @@ msgstr "缓存超时(秒)"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr "取消"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr "取消清单源同步"
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:778
-#: screens/Job/JobOutput/JobOutput.js:779
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr "取消作业"
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:222
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr "取消项目同步"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr "取消同步"
-#: screens/Job/JobOutput/JobOutput.js:786
-#: screens/Job/JobOutput/JobOutput.js:789
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr "取消作业"
@@ -905,7 +893,7 @@ msgstr "取消链路更改"
msgid "Cancel link removal"
msgstr "取消链接删除"
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr "取消查找"
@@ -931,19 +919,23 @@ msgid "Cancel subscription edit"
msgstr "取消订阅编辑"
#: components/JobList/JobListItem.js:113
-#: screens/Job/JobDetail/JobDetail.js:497
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr "取消 {0}"
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr "已取消"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -959,10 +951,10 @@ msgstr "无法在跃点节点上运行健康检查。"
msgid "Capacity"
msgstr "容量"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:256
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -988,13 +980,13 @@ msgstr "regex 不区分大小写的版本。"
msgid "Case-insensitive version of startswith."
msgstr "开头不区分大小写的版本。"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
msgstr "部署 {brandName} 时更改 PROJECTS_ROOT 以更改此位置。"
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr "已更改"
@@ -1003,13 +995,13 @@ msgstr "已更改"
msgid "Changes"
msgstr "更改"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr "频道"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr "检查"
@@ -1033,20 +1025,20 @@ msgstr "选择通知类型"
msgid "Choose a Playbook Directory"
msgstr "选择 Playbook 目录"
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr "选择源控制类型"
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr "选择 Webhook 服务"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr "选择作业类型"
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr "选择模块"
@@ -1054,7 +1046,7 @@ msgstr "选择模块"
msgid "Choose a source"
msgstr "选择一个源"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr "选择 HTTP 方法"
@@ -1073,20 +1065,20 @@ msgstr "选择应用到所选资源的角色。请注意,所有选择的角色
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.js:193
+#: components/AddRole/AddResourceRole.js:174
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 "选择将获得新角色的资源类型。例如,如果您想为一组用户添加新角色,请选择用户并点击下一步。您可以选择下一步中的具体资源。"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr "清理"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr "清除"
-#: components/DataListToolbar/DataListToolbar.js:96
+#: components/DataListToolbar/DataListToolbar.js:95
#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr "清除所有过滤器"
@@ -1099,7 +1091,7 @@ msgstr "清除订阅"
msgid "Clear subscription selection"
msgstr "清除订阅选择"
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr "点一个可用的节点来创建新链接。点击图形之外来取消。"
@@ -1127,29 +1119,29 @@ msgstr "单击以重新安排调查问题的顺序"
msgid "Click to toggle default value"
msgstr "点击以切换默认值"
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr "点击以查看作业详情"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr "客户端 ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr "客户端标识符"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr "客户端标识符"
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr "客户端 secret"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr "客户端类型"
@@ -1178,24 +1170,36 @@ msgstr "折叠所有作业事件"
msgid "Collapse section"
msgstr "折叠部分"
-#: components/JobList/JobList.js:210
+#: components/JobList/JobList.js:214
#: components/JobList/JobListItem.js:45
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr "命令"
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr "合规"
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr "并发作业"
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1215,11 +1219,11 @@ msgstr "确认禁用本地授权"
msgid "Confirm Password"
msgstr "确认密码"
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr "确认取消作业"
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr "确认取消"
@@ -1251,7 +1255,7 @@ msgstr "确认全部恢复"
msgid "Confirm selection"
msgstr "确认选择"
-#: screens/Job/JobDetail/JobDetail.js:290
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr "容器组"
@@ -1283,31 +1287,40 @@ msgstr "Control(控制)"
msgid "Control node"
msgstr "控制节点"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr "控制 Ansible 为清单源更新作业生成的输出级别。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr "控制 ansible 在 playbook 执行时生成的输出级别。"
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
-msgstr "控制 ansible 在 playbook 执行时生成的输出级别。"
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr "控制 ansible 在 playbook 执行时生成的输出级别。"
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
+msgstr ""
+
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr "趋同"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr "趋同选择"
@@ -1335,15 +1348,15 @@ msgstr "复制清单"
msgid "Copy Notification Template"
msgstr "复制通知模板"
-#: screens/Project/ProjectList/ProjectListItem.js:254
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr "复制项目"
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr "复制模板"
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr "将完整修订复制到剪贴板。"
@@ -1352,33 +1365,35 @@ msgstr "将完整修订复制到剪贴板。"
msgid "Copyright"
msgstr "版权"
-#: screens/Inventory/shared/InventoryForm.js:88
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr "创建"
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr "创建新应用"
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr "创建新凭证"
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr "创建新主机"
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr "创建新作业模板"
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr "创建新通知模板"
@@ -1387,20 +1402,20 @@ msgstr "创建新通知模板"
msgid "Create New Organization"
msgstr "创建新机构"
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr "创建新项目"
-#: screens/Inventory/Inventories.js:90
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr "创建新调度"
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr "创建新团队"
@@ -1409,7 +1424,7 @@ msgstr "创建新团队"
msgid "Create New User"
msgstr "创建新用户"
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr "创建新工作流模板"
@@ -1417,8 +1432,8 @@ msgstr "创建新工作流模板"
msgid "Create a new Smart Inventory with the applied filter"
msgstr "使用应用的过滤器创建新智能清单"
-#: screens/InstanceGroup/InstanceGroups.js:46
-#: screens/InstanceGroup/InstanceGroups.js:56
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr "创建新容器组"
@@ -1435,30 +1450,30 @@ msgstr "创建新凭证类型"
msgid "Create new execution environment"
msgstr "创建新执行环境"
-#: screens/Inventory/Inventories.js:74
-#: screens/Inventory/Inventories.js:81
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr "创建新组"
-#: screens/Inventory/Inventories.js:65
-#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr "创建新主机"
-#: screens/InstanceGroup/InstanceGroups.js:45
-#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr "创建新实例组"
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr "创建新清单"
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr "创建新智能清单"
-#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr "创建新源"
@@ -1467,39 +1482,39 @@ msgid "Create user token"
msgstr "创建用户令牌"
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:131
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:432
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr "已创建"
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1510,7 +1525,7 @@ msgstr "已创建"
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
-#: components/RelatedTemplateList/RelatedTemplateList.js:151
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
#: components/TemplateList/TemplateList.js:226
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
@@ -1519,7 +1534,7 @@ msgstr "已创建"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
-#: screens/Credential/CredentialList/CredentialList.js:151
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
@@ -1547,24 +1562,23 @@ msgstr "创建者(用户名)"
msgid "Created by (username)"
msgstr "创建者(用户名)"
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr "凭证"
@@ -1577,14 +1591,15 @@ msgstr "凭证输入源"
msgid "Credential Name"
msgstr "凭证名称"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr "凭证类型"
#: routeConfig.js:117
-#: screens/ActivityStream/ActivityStream.js:186
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1592,11 +1607,11 @@ msgstr "凭证类型"
msgid "Credential Types"
msgstr "凭证类型"
-#: screens/Credential/CredentialList/CredentialList.js:114
+#: screens/Credential/CredentialList/CredentialList.js:113
msgid "Credential copied successfully"
msgstr "成功复制的凭证"
-#: screens/Credential/Credential.js:97
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr "未找到凭证。"
@@ -1605,15 +1620,19 @@ msgstr "未找到凭证。"
msgid "Credential passwords"
msgstr "凭证密码"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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 "与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。如果留空,底层 Pod 的服务帐户会被使用。"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr "使用受保护的容器 registry 进行身份验证的凭证。"
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr "未找到凭证类型。"
@@ -1622,20 +1641,20 @@ msgstr "未找到凭证类型。"
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:326
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:70
-#: screens/ActivityStream/ActivityStream.js:161
-#: screens/Credential/CredentialList/CredentialList.js:192
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:334
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr "凭证"
@@ -1648,6 +1667,10 @@ msgstr "不允许在启动时需要密码的凭证。请删除或替换为同一
msgid "Current page"
msgstr "当前页"
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr "自定义 pod 规格"
@@ -1662,7 +1685,7 @@ msgstr "自定义虚拟环境 {0} 必须替换为一个执行环境。"
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "自定义虚拟环境 {0} 必须替换为执行环境。有关迁移到执行环境的更多信息,请参阅<0>文档0>。"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr "自定义虚拟环境 {virtualEnvironment} 必须替换为执行环境。有关迁移到执行环境的更多信息,请参阅<0>文档0>。"
@@ -1685,7 +1708,7 @@ msgstr "已删除"
msgid "Dashboard"
msgstr "仪表板"
-#: screens/ActivityStream/ActivityStream.js:141
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr "仪表板(所有活动)"
@@ -1697,14 +1720,14 @@ msgstr "数据保留的周期"
msgid "Date"
msgstr "日期"
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr "天"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr "保留数据的天数"
@@ -1720,11 +1743,11 @@ msgstr "剩余的天数"
msgid "Days to keep"
msgstr "保存的天数"
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr "调试"
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr "12 月"
@@ -1735,9 +1758,9 @@ msgstr "12 月"
msgid "Default"
msgstr "默认"
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:216
-#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr "默认回答"
@@ -1745,9 +1768,9 @@ msgstr "默认回答"
msgid "Default Execution Environment"
msgstr "默认执行环境"
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr "默认回答"
@@ -1766,35 +1789,35 @@ msgstr "定义系统级的特性和功能"
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:123
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:159
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:509
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr "删除"
@@ -1802,42 +1825,42 @@ msgstr "删除"
msgid "Delete All Groups and Hosts"
msgstr "删除所有组和主机"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr "删除凭证"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr "删除执行环境"
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr "删除主机"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:154
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr "删除清单"
-#: screens/Job/JobDetail/JobDetail.js:505
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr "删除作业"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr "删除作业模板"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr "删除通知"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr "删除机构"
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr "删除项目"
@@ -1845,7 +1868,7 @@ msgstr "删除项目"
msgid "Delete Questions"
msgstr "删除问题"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr "删除调度"
@@ -1861,15 +1884,15 @@ msgstr "删除团队"
msgid "Delete User"
msgstr "删除用户"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr "删除用户令牌"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr "删除工作流批准"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr "删除工作流作业模板"
@@ -1878,28 +1901,28 @@ msgstr "删除工作流作业模板"
msgid "Delete all nodes"
msgstr "删除所有节点"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr "创建应用"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr "删除凭证类型"
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr "删除错误"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:107
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr "删除实例组"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr "删除清单源"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr "删除智能清单"
@@ -1907,7 +1930,7 @@ msgstr "删除智能清单"
msgid "Delete survey question"
msgstr "删除问卷调查问题"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1916,7 +1939,7 @@ msgid ""
msgstr "在进行更新前删除整个本地存储库。根据存储库的大小,这可能会显著增加完成更新所需的时间。"
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr "在同步前删除项目。"
@@ -1932,14 +1955,17 @@ msgstr "删除此节点"
msgid "Delete {pluralizedItemName}?"
msgstr "删除 {pluralizedItemName}?"
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr "已删除"
-#: components/TemplateList/TemplateList.js:295
-#: screens/Credential/CredentialList/CredentialList.js:208
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
#: screens/Inventory/InventoryList/InventoryList.js:284
#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
@@ -1951,67 +1977,71 @@ msgstr "删除错误"
msgid "Deletion error"
msgstr "删除错误"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr "已拒绝"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr "拒绝 - {0}。详情请查看活动流。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr "已拒绝 {0} - {1}"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr "拒绝"
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr "已弃用"
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
+#: components/Schedule/shared/ScheduleForm.js:115
#: components/TemplateList/TemplateList.js:210
-#: components/TemplateList/TemplateListItem.js:262
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:147
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
#: screens/Inventory/InventoryList/InventoryList.js:195
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:49
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
@@ -2020,93 +2050,96 @@ msgstr "已弃用"
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
#: screens/Project/ProjectList/ProjectList.js:190
-#: screens/Project/ProjectList/ProjectListItem.js:273
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr "描述"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr "目标频道"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr "目标频道或用户"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr "目标 SMS 号码"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr "目标 SMS 号码"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr "目标频道"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr "目标频道或用户"
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:71
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
#: screens/InstanceGroup/ContainerGroup.js:66
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:68
-#: screens/InstanceGroup/InstanceGroups.js:58
-#: screens/InstanceGroup/InstanceGroups.js:66
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:86
-#: screens/Inventory/Inventory.js:63
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
+#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2141,53 +2174,53 @@ msgstr "目标频道或用户"
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
#: screens/TopologyView/Tooltip.js:56
#: screens/TopologyView/Tooltip.js:70
-#: screens/User/User.js:63
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr "详情"
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr "详情标签页"
-#: components/Search/AdvancedSearch.js:266
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr "直接密钥"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr "禁用 SSL 验证"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr "禁用 SSL 验证"
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr "禁用"
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2202,12 +2235,12 @@ msgstr "解除关联"
msgid "Disassociate group from host?"
msgstr "从主机中解除关联组?"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr "从组中解除关联主机?"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
-#: screens/InstanceGroup/Instances/InstanceList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
+#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr "从实例组中解除关联实例?"
@@ -2234,18 +2267,23 @@ msgid "Disassociate?"
msgstr "解除关联?"
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr "在同步前丢弃本地更改。"
#: screens/Template/shared/JobTemplateForm.js:479
-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 "将此作业模板完成的工作分成指定作业分片数,每一分片都针对清单的一部分运行相同的任务。"
+#~ 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 "将此作业模板完成的工作分成指定作业分片数,每一分片都针对清单的一部分运行相同的任务。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr "文档。"
@@ -2261,55 +2299,71 @@ msgstr "完成"
msgid "Download Output"
msgstr "下载输出"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr "把文件拖放在这里或浏览以上传"
+#: components/SelectedList/DraggableSelectedList.js:68
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:43
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:38
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
+
+#: components/SelectedList/DraggableSelectedList.js:32
+msgid "Dragging started for item id: {newId}."
+msgstr ""
+
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr "电子邮件"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr "电子邮件选项"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
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.js:96
+#: screens/Project/shared/Project.helptext.js:120
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.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:148
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2337,10 +2391,10 @@ msgstr "每次使用此项目运行作业时,请在启动该作业前更新项
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
@@ -2356,14 +2410,14 @@ msgstr "编辑凭证"
msgid "Edit Credential Plugin Configuration"
msgstr "编辑凭证插件配置"
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2388,8 +2442,8 @@ msgstr "编辑凭证插件配置"
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr "类型详情"
@@ -2406,11 +2460,11 @@ msgstr "编辑执行环境"
msgid "Edit Group"
msgstr "编辑组"
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr "编辑主机"
@@ -2445,18 +2499,18 @@ msgstr "编辑顺序"
msgid "Edit Organization"
msgstr "编辑机构"
-#: screens/Project/ProjectList/ProjectListItem.js:240
-#: screens/Project/ProjectList/ProjectListItem.js:245
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr "编辑项目"
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr "编辑问题"
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr "编辑调度"
@@ -2468,15 +2522,15 @@ msgstr "编辑源"
msgid "Edit Survey"
msgstr "编辑问卷调查"
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr "编辑团队"
-#: components/TemplateList/TemplateListItem.js:224
-#: components/TemplateList/TemplateListItem.js:230
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr "编辑模板"
@@ -2497,12 +2551,12 @@ msgstr "编辑凭证类型"
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:63
-#: screens/InstanceGroup/InstanceGroups.js:68
-#: screens/Inventory/Inventories.js:62
-#: screens/Inventory/Inventories.js:67
-#: screens/Inventory/Inventories.js:76
-#: screens/Inventory/Inventories.js:87
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr "编辑详情"
@@ -2511,7 +2565,7 @@ msgstr "编辑详情"
msgid "Edit group"
msgstr "编辑组"
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr "编辑主机"
@@ -2533,13 +2587,13 @@ msgstr "编辑这个链接"
msgid "Edit this node"
msgstr "编辑此节点"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr "编辑工作流"
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr "已经过"
@@ -2559,15 +2613,15 @@ msgstr "作业运行所经过的时间"
msgid "Email"
msgstr "电子邮件"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr "电子邮件选项"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr "启用并发作业"
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr "启用事实缓存"
@@ -2575,14 +2629,14 @@ msgstr "启用事实缓存"
msgid "Enable HTTPS certificate verification"
msgstr "启用 HTTPS 证书验证"
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr "启用 Webhook"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr "为此工作流作业模板启用 Webhook。"
@@ -2594,8 +2648,8 @@ msgstr "启用外部日志记录"
msgid "Enable log system tracking facts individually"
msgstr "单独启用日志系统跟踪事实"
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr "启用权限升级"
@@ -2603,7 +2657,7 @@ msgstr "启用权限升级"
msgid "Enable simplified login for your {brandName} applications"
msgstr "为您的 {brandName} 应用启用简化的登录"
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr "为此模板启用 Webhook。"
@@ -2613,29 +2667,29 @@ msgstr "为此模板启用 Webhook。"
msgid "Enabled"
msgstr "启用"
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr "启用的选项"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr "启用的值"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr "启用的变量"
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2644,19 +2698,23 @@ msgid ""
msgstr "允许创建部署回调 URL。使用此 URL,主机可访问 {brandName} 并使用此任务模板请求配置更新"
#: screens/Template/shared/JobTemplateForm.js:568
-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 "允许创建部署回调 URL。使用此 URL,主机可访问 {brandName} 并使用此任务模板请求配置更新"
+#~ 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 "允许创建部署回调 URL。使用此 URL,主机可访问 {brandName} 并使用此任务模板请求配置更新"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Template/shared/JobTemplate.helptext.js:28
+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 ""
+
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr "已加密"
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr "结束"
@@ -2668,7 +2726,7 @@ msgstr "最终用户许可证协议"
msgid "End date"
msgstr "结束日期"
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr "结束日期/时间"
@@ -2704,95 +2762,99 @@ msgid ""
msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档。"
#: screens/Inventory/shared/InventoryForm.js:92
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
-msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档"
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax"
+#~ msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr "每行输入一个注解标签,不带逗号。"
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr "每行输入一个注解标签,不带逗号。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 "每行输入一个 IRC 频道或用户名。频道不需要输入 # 号,用户不需要输入 @ 符号。"
+#~ 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 "每行输入一个 IRC 频道或用户名。频道不需要输入 # 号,用户不需要输入 @ 符号。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr "每行输入一个 Slack 频道。频道需要一个井号(#)。要响应一个特点信息或启动一个特定消息,将父信息 Id 添加到频道中,父信息 Id 为 16 位。在第 10 位数字后需要手动插入一个点(.)。例如:#destination-channel, 1231257890.006423。请参阅 Slack"
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr "每行输入一个 Slack 频道。频道需要一个井号(#)。要响应一个特点信息或启动一个特定消息,将父信息 Id 添加到频道中,父信息 Id 为 16 位。在第 10 位数字后需要手动插入一个点(.)。例如:#destination-channel, 1231257890.006423。请参阅 Slack"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr "每行输入一封电子邮件地址,为这类通知创建一个接收者列表。"
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr "每行输入一封电子邮件地址,为这类通知创建一个接收者列表。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr "每行输入一个电话号码以指定路由 SMS 消息的位置。电话号的格式化为 +11231231234。如需更多信息,请参阅 Twilio 文档"
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr "每行输入一个电话号码以指定路由 SMS 消息的位置。电话号的格式化为 +11231231234。如需更多信息,请参阅 Twilio 文档"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。"
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。"
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>Insights1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>Insights1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>Tower1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>Tower1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>aws_ec21> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>aws_ec21> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>azure_rm1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>azure_rm1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>foreman1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>foreman1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0> 和 <1>gcp_compute1> 插件配置指南。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0> 和 <1>gcp_compute1> 插件配置指南。"
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>openstack1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>openstack1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>ovirt1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>ovirt1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>vmware_vm_inventory1> 插件配置指南 。"
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件0>部分,以及 <1>vmware_vm_inventory1> 插件配置指南 。"
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr "使用 JSON 或 YAML 语法输入变量。使用单选按钮在两者之间切换。"
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr "使用 JSON 或 YAML 语法输入变量。使用单选按钮在两者之间切换。"
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
+msgstr ""
+
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:121
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:131
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: screens/Job/JobOutput/JobOutputSearch.js:105
#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr "错误"
@@ -2801,90 +2863,90 @@ msgstr "错误"
msgid "Error fetching updated project"
msgstr "获取更新的项目时出错"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr "错误消息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr "错误消息正文"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr "保存工作流时出错!"
-#: components/AdHocCommands/AdHocCommands.js:111
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/RelatedTemplateList/RelatedTemplateList.js:226
-#: components/ResourceAccessList/ResourceAccessList.js:231
-#: components/ResourceAccessList/ResourceAccessList.js:243
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:298
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:232
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:295
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:168
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
#: screens/Project/ProjectList/ProjectList.js:291
#: screens/Project/ProjectList/ProjectList.js:303
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2895,13 +2957,16 @@ msgstr "保存工作流时出错!"
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr "错误!"
@@ -2909,12 +2974,12 @@ msgstr "错误!"
msgid "Error:"
msgstr "错误:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr "错误"
-#: screens/ActivityStream/ActivityStream.js:259
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
@@ -2932,11 +2997,11 @@ msgstr "事件详情 modal"
msgid "Event summary not available"
msgstr "事件摘要不可用"
-#: screens/ActivityStream/ActivityStream.js:228
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr "事件"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr "每分钟 {0} 次"
@@ -2952,35 +3017,35 @@ msgstr "完全匹配(如果没有指定,则默认查找)。"
msgid "Exact search on id field."
msgstr "对 id 字段进行精确搜索。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr "GIT 源控制的 URL 示例包括:"
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr "远程归档源控制的 URL 示例包括:"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr "Subversion SCM 源控制 URL 示例包括:"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr "示例包括::"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr "示例:"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr "无论父节点的最后状态如何都执行。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr "当父节点出现故障状态时执行。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr "当父节点具有成功状态时执行。"
@@ -2991,29 +3056,29 @@ msgstr "Execution(执行)"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr "执行环境"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr "缺少执行环境"
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
#: routeConfig.js:147
-#: screens/ActivityStream/ActivityStream.js:211
+#: screens/ActivityStream/ActivityStream.js:217
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3021,7 +3086,7 @@ msgstr "缺少执行环境"
msgid "Execution Environments"
msgstr "执行环境"
-#: screens/Job/JobDetail/JobDetail.js:277
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr "执行节点"
@@ -3029,11 +3094,11 @@ msgstr "执行节点"
msgid "Execution environment copied successfully"
msgstr "执行环境复制成功"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr "执行环境缺失或删除。"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr "未找到执行环境。"
@@ -3050,7 +3115,7 @@ msgstr "不保存退出"
msgid "Expand"
msgstr "展开"
-#: components/DataListToolbar/DataListToolbar.js:106
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr "扩展所有行"
@@ -3072,15 +3137,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr "预期该文件中至少有一个 client_email、project_id 或 private_key 之一。"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr "过期"
@@ -3092,13 +3157,12 @@ msgstr "过期于"
msgid "Expires on UTC"
msgstr "过期于 UTC"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr "过期于 {0}"
#: components/JobList/JobListItem.js:306
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr "解释"
@@ -3106,35 +3170,39 @@ msgstr "解释"
msgid "External Secret Management System"
msgstr "外部 Secret 管理系统"
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr "额外变量"
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr "完成:"
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr "事实存储"
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr "事实"
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3159,15 +3227,16 @@ msgstr "失败的主机"
msgid "Failed jobs"
msgstr "失败的作业"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr "批准一个或多个工作流批准失败。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr "批准工作流批准失败。"
-#: components/ResourceAccessList/ResourceAccessList.js:235
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr "正确分配角色失败"
@@ -3177,31 +3246,36 @@ msgid "Failed to associate role"
msgstr "关联角色失败"
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:298
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr "关联失败。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr "取消清单源同步失败"
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:224
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr "取消项目同步失败"
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr "取消一个或多个作业失败。"
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
#: components/JobList/JobListItem.js:114
-#: screens/Job/JobDetail/JobDetail.js:498
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr "取消 {0} 失败"
@@ -3217,20 +3291,20 @@ msgstr "复制执行环境失败"
msgid "Failed to copy inventory."
msgstr "复制清单失败。"
-#: screens/Project/ProjectList/ProjectListItem.js:262
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr "复制项目失败。"
-#: components/TemplateList/TemplateListItem.js:244
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr "复制模板失败。"
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr "删除应用程序失败。"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr "删除凭证失败。"
@@ -3238,24 +3312,24 @@ msgstr "删除凭证失败。"
msgid "Failed to delete group {0}."
msgstr "删除组 {0} 失败。"
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr "删除主机失败。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr "删除清单源 {name} 失败。"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr "删除清单失败。"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr "删除作业模板失败。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr "删除通知失败。"
@@ -3267,7 +3341,7 @@ msgstr "删除一个或多个应用程序失败。"
msgid "Failed to delete one or more credential types."
msgstr "删除一个或多个凭证类型失败。"
-#: screens/Credential/CredentialList/CredentialList.js:214
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr "删除一个或多个凭证失败。"
@@ -3279,8 +3353,8 @@ msgstr "删除一个或多个执行环境失败"
msgid "Failed to delete one or more groups."
msgstr "删除一个或多个组失败。"
-#: screens/Host/HostList/HostList.js:235
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr "删除一个或多个主机失败。"
@@ -3292,15 +3366,15 @@ msgstr "删除一个或多个实例组失败。"
msgid "Failed to delete one or more inventories."
msgstr "删除一个或多个清单失败。"
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr "删除一个或多个清单源失败。"
-#: components/RelatedTemplateList/RelatedTemplateList.js:229
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr "删除一个或多个作业模板失败。"
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr "删除一个或多个作业失败。"
@@ -3324,7 +3398,7 @@ msgstr "删除一个或多个调度失败。"
msgid "Failed to delete one or more teams."
msgstr "删除一个或多个团队失败。"
-#: components/TemplateList/TemplateList.js:301
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr "删除一个或多个模板失败。"
@@ -3332,7 +3406,7 @@ msgstr "删除一个或多个模板失败。"
msgid "Failed to delete one or more tokens."
msgstr "删除一个或多个令牌失败。"
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr "删除一个或多个用户令牌失败。"
@@ -3340,19 +3414,19 @@ msgstr "删除一个或多个用户令牌失败。"
msgid "Failed to delete one or more users."
msgstr "删除一个或多个用户失败。"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr "无法删除一个或多个工作流批准。"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr "删除机构失败。"
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr "删除项目失败。"
-#: components/ResourceAccessList/ResourceAccessList.js:246
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr "删除角色失败"
@@ -3361,11 +3435,11 @@ msgstr "删除角色失败"
msgid "Failed to delete role."
msgstr "删除角色失败。"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr "删除调度失败。"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr "删除智能清单失败。"
@@ -3377,11 +3451,11 @@ msgstr "删除团队失败。"
msgid "Failed to delete user."
msgstr "删除用户失败。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr "删除工作流批准失败。"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr "删除工作流任务模板失败。"
@@ -3390,11 +3464,11 @@ msgstr "删除工作流任务模板失败。"
msgid "Failed to delete {name}."
msgstr "删除 {name} 失败。"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr "拒绝一个或多个工作流批准失败。"
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr "拒绝工作流批准失败。"
@@ -3404,13 +3478,13 @@ msgstr "拒绝工作流批准失败。"
msgid "Failed to disassociate one or more groups."
msgstr "解除关联一个或多个组关联。"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr "解除关联一个或多个主机失败。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:300
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr "解除关联一个或多个实例失败。"
@@ -3418,7 +3492,7 @@ msgstr "解除关联一个或多个实例失败。"
msgid "Failed to disassociate one or more teams."
msgstr "解除关联一个或多个团队失败。"
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr "获取自定义登录配置设置失败。系统默认设置会被显示。"
@@ -3426,7 +3500,7 @@ msgstr "获取自定义登录配置设置失败。系统默认设置会被显示
msgid "Failed to fetch the updated project data."
msgstr "获取更新的项目数据失败。"
-#: components/AdHocCommands/AdHocCommands.js:119
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3444,7 +3518,7 @@ msgstr "获取完整节点资源对象失败。"
msgid "Failed to retrieve node credentials."
msgstr "获取节点凭证失败。"
-#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr "在一个或多个实例上运行健康检查失败。"
@@ -3457,11 +3531,11 @@ msgstr "发送测试通知失败。"
msgid "Failed to sync inventory source."
msgstr "同步清单源失败。"
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr "同步项目失败。"
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr "同步部分或所有清单源失败。"
@@ -3481,9 +3555,9 @@ msgstr "切换通知失败。"
msgid "Failed to toggle schedule."
msgstr "切换调度失败。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr "更新容量调整失败。"
@@ -3492,7 +3566,7 @@ msgstr "更新容量调整失败。"
msgid "Failed to update survey."
msgstr "更新问卷调查失败。"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr "用户令牌失败。"
@@ -3501,17 +3575,17 @@ msgstr "用户令牌失败。"
msgid "Failure"
msgstr "失败"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr "false"
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr "2 月"
@@ -3535,11 +3609,11 @@ msgstr "字段与给出的正则表达式匹配。"
msgid "Field starts with value."
msgstr "字段以值开头。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr "第五"
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr "文件差异"
@@ -3551,28 +3625,28 @@ msgstr "上传文件被拒绝。请选择单个 .json 文件。"
msgid "File, directory or script"
msgstr "文件、目录或脚本"
-#: components/Search/Search.js:187
-#: components/Search/Search.js:211
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr "按 {name} 过滤。"
-#: components/JobList/JobList.js:244
+#: components/JobList/JobList.js:248
#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr "完成时间"
-#: screens/Job/JobDetail/JobDetail.js:117
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr "完成"
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr "第一"
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:132
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3581,17 +3655,17 @@ msgstr "第一"
msgid "First Name"
msgstr "名"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr "首次运行"
-#: components/ResourceAccessList/ResourceAccessList.js:181
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr "名字"
-#: components/Search/AdvancedSearch.js:208
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr "首先,选择一个密钥"
@@ -3613,51 +3687,57 @@ msgid "Follow"
msgstr "关注"
#: screens/Template/shared/JobTemplateForm.js:253
-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 "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。"
+#~ 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 "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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 "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr "有关详情请参阅"
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr "分叉"
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr "第六"
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr "频率详情"
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr "频率与预期值不匹配"
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr "周五"
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr "周五"
@@ -3669,7 +3749,7 @@ msgstr "模糊搜索 id、name 或 description 字段。"
msgid "Fuzzy search on name field."
msgstr "模糊搜索名称字段。"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr "Galaxy 凭证"
@@ -3678,7 +3758,7 @@ msgstr "Galaxy 凭证"
msgid "Galaxy credentials must be owned by an Organization."
msgstr "Galaxy 凭证必须属于机构。"
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr "收集事实"
@@ -3693,13 +3773,14 @@ msgstr "获取订阅"
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
+#: screens/Job/JobDetail/JobDetail.js:74
#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr "Git"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr "GitHub"
@@ -3737,17 +3818,17 @@ msgstr "GitHub Team"
msgid "GitHub settings"
msgstr "GitHub 设置"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr "GitLab"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr "全局可用"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr "全局可用的执行环境无法重新分配给特定机构"
@@ -3784,12 +3865,12 @@ msgstr "Google OAuth2"
msgid "Grafana"
msgstr "Grafana"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr "Grafana API 密钥"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr "Grafana URL"
@@ -3805,7 +3886,7 @@ msgstr "大于或等于比较。"
msgid "Group"
msgstr "组"
-#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr "组详情"
@@ -3813,12 +3894,12 @@ msgstr "组详情"
msgid "Group type"
msgstr "组类型"
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:71
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/Hosts.js:29
+#: screens/Inventory/Inventories.js:72
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
#: screens/Inventory/InventoryList/InventoryListItem.js:127
@@ -3827,13 +3908,13 @@ msgstr "组类型"
msgid "Groups"
msgstr "组"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr "HTTP 标头"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr "HTTP 方法"
@@ -3841,10 +3922,10 @@ msgstr "HTTP 方法"
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr "健康检查"
+#~ msgid "Health Check"
+#~ msgstr "健康检查"
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr "健康"
@@ -3875,23 +3956,23 @@ msgstr "Hop(跃点)"
msgid "Hop node"
msgstr "Hop(跃点)节点"
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr "主机"
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr "主机同步故障"
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr "主机异步正常"
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr "主机配置键"
@@ -3899,61 +3980,61 @@ msgstr "主机配置键"
msgid "Host Count"
msgstr "主机计数"
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr "类型详情"
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr "主机故障"
-#: screens/Job/JobOutput/JobOutputSearch.js:106
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr "主机故障"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr "主机过滤器"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr "主机名"
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr "主机正常"
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr "主机轮询"
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr "主机重试"
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr "主机已跳过"
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr "主机已启动"
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr "主机无法访问"
-#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr "主机详情"
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr "主机详情 modal"
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr "未找到主机"
@@ -3963,20 +4044,20 @@ msgid "Host status information for this job is unavailable."
msgstr "此作业的主机状态信息不可用。"
#: routeConfig.js:85
-#: screens/ActivityStream/ActivityStream.js:170
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
#: screens/Host/HostList/HostList.js:143
-#: screens/Host/HostList/HostList.js:190
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
-#: screens/Inventory/Inventory.js:66
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
#: screens/Inventory/SmartInventory.js:68
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
@@ -4001,7 +4082,7 @@ msgstr "导入的主机"
msgid "Hosts remaining"
msgstr "剩余主机"
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr "小时"
@@ -4018,25 +4099,25 @@ msgstr "Hybrid(混合)"
msgid "Hybrid node"
msgstr "混合节点"
-#: components/JobList/JobList.js:196
+#: components/JobList/JobList.js:200
#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr "ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr "仪表板 ID"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr "面板 ID"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr "仪表板 ID(可选)"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr "面板 ID(可选)"
@@ -4045,49 +4126,49 @@ msgstr "面板 ID(可选)"
msgid "IRC"
msgstr "IRC"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr "IRC Nick"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr "IRC 服务器地址"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr "IRC 服务器端口"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr "IRC Nick"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr "IRC 服务器地址"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr "IRC 服务器密码"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr "IRC 服务器端口"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr "图标 URL"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4099,12 +4180,16 @@ msgid ""
msgstr "如果选中,以前存在于外部源上的但现已被删除的任何主机和组都将从清单中删除。不由清单源管理的主机和组将提升到下一个手动创建的组,如果没有手动创建组来提升它们,则它们将保留在清单的“all”默认组中。"
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
-msgstr "如果启用,则以管理员身份运行此 playbook。"
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr "如果启用,则以管理员身份运行此 playbook。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4112,34 +4197,46 @@ msgid ""
msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff mode。"
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
-msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。"
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。"
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:181
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。"
#: screens/Template/shared/JobTemplateForm.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
-msgstr "如果启用,将允许同时运行此作业模板。"
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr "如果启用,将允许同时运行此作业模板。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "如果启用,将允许同时运行此工作流作业模板。"
#: screens/Template/shared/JobTemplateForm.js:611
-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 "如果启用,这将存储收集的事实,以便在主机一级查看它们。事实在运行时会被持久化并注入事实缓存。"
+#~ 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 "如果启用,这将存储收集的事实,以便在主机一级查看它们。事实在运行时会被持久化并注入事实缓存。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+msgstr ""
+
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr "如果指定,则在查看工作流时此字段将显示在节点上,而不是资源名称"
@@ -4157,26 +4254,26 @@ msgstr "如果您还没有订阅,请联系红帽来获得一个试用订阅。
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "如果您只想删除这个特定用户的访问,请将其从团队中删除。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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.js:52
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr "镜像"
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr "包含文件"
@@ -4195,17 +4292,17 @@ msgstr "Info"
msgid "Initiated By"
msgstr "启动者"
-#: screens/ActivityStream/ActivityStream.js:247
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr "启动者"
-#: screens/ActivityStream/ActivityStream.js:237
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr "启动者(用户名)"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr "注入程序配置"
@@ -4215,18 +4312,22 @@ msgstr "注入程序配置"
msgid "Input configuration"
msgstr "输入配置"
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr "Insights 凭证"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr "Insights for Ansible Automation Platform"
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr "Insights for Ansible Automation Platform"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr "Insights for Ansible Automation Platform 仪表板"
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr "Insights for Ansible Automation Platform 仪表板"
#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
@@ -4236,27 +4337,27 @@ msgstr "Insights 系统 ID"
msgid "Instance"
msgstr "实例"
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr "实例过滤器"
-#: screens/Job/JobDetail/JobDetail.js:283
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr "实例组"
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
#: routeConfig.js:132
-#: screens/ActivityStream/ActivityStream.js:199
+#: screens/ActivityStream/ActivityStream.js:205
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
-#: screens/InstanceGroup/InstanceGroups.js:44
-#: screens/InstanceGroup/InstanceGroups.js:54
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr "实例组"
@@ -4264,7 +4365,7 @@ msgstr "实例组"
msgid "Instance ID"
msgstr "实例 ID"
-#: screens/InstanceGroup/InstanceGroups.js:61
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr "实例详情"
@@ -4273,7 +4374,7 @@ msgstr "实例详情"
msgid "Instance group"
msgstr "实例组"
-#: screens/InstanceGroup/InstanceGroup.js:91
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr "没有找到实例组"
@@ -4282,21 +4383,21 @@ msgstr "没有找到实例组"
msgid "Instance group used capacity"
msgstr "实例组使用的容量"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr "实例组"
#: routeConfig.js:137
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroup.js:73
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:59
+#: screens/InstanceGroup/InstanceGroups.js:60
#: screens/InstanceGroup/Instances/InstanceList.js:181
-#: screens/InstanceGroup/Instances/InstanceList.js:277
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr "实例"
@@ -4320,15 +4421,15 @@ msgstr "无效的链路目标。无法连接到子节点或祖先节点。不支
msgid "Invalid time format"
msgstr "无效的时间格式"
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr "无效的用户名或密码。请重试。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
#: routeConfig.js:80
-#: screens/ActivityStream/ActivityStream.js:167
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
+#: screens/Inventory/Inventories.js:17
#: screens/Inventory/InventoryList/InventoryList.js:174
#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
@@ -4344,36 +4445,38 @@ msgstr "无法复制含有源的清单"
#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:422
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:288
-#: components/TemplateList/TemplateListItem.js:298
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:170
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:186
#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:165
-#: screens/Job/JobDetail/JobDetail.js:179
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr "清单"
@@ -4381,7 +4484,7 @@ msgstr "清单"
msgid "Inventory (Name)"
msgstr "清单(名称)"
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr "清单文件"
@@ -4389,35 +4492,35 @@ msgstr "清单文件"
msgid "Inventory ID"
msgstr "清单 ID"
-#: screens/Job/JobDetail/JobDetail.js:185
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr "清单源"
-#: screens/Job/JobDetail/JobDetail.js:208
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr "清单源项目"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr "清单源同步"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr "清单源同步错误"
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr "清单源"
-#: components/JobList/JobList.js:208
+#: components/JobList/JobList.js:212
#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr "清单同步"
@@ -4433,12 +4536,12 @@ msgstr "清单更新"
msgid "Inventory copied successfully"
msgstr "成功复制清单"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr "清单文件"
-#: screens/Inventory/Inventory.js:93
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr "未找到清单。"
@@ -4450,23 +4553,23 @@ msgstr "清单同步"
msgid "Inventory sync failures"
msgstr "清单同步失败"
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr "已展开"
-#: components/DataListToolbar/DataListToolbar.js:113
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr "未扩展"
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr "项故障"
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr "项正常"
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr "项已跳过"
@@ -4480,49 +4583,50 @@ msgid "Items per page"
msgstr "每页的项"
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr "作业 ID:"
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr "JSON"
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr "JSON 标签页"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr "JSON:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr "1 月"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr "作业"
+#~ msgid "Job"
+#~ msgstr "作业"
#: components/JobList/JobListItem.js:112
-#: screens/Job/JobDetail/JobDetail.js:496
-#: screens/Job/JobOutput/JobOutput.js:821
-#: screens/Job/JobOutput/JobOutput.js:822
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr "作业取消错误"
-#: screens/Job/JobDetail/JobDetail.js:518
-#: screens/Job/JobOutput/JobOutput.js:810
-#: screens/Job/JobOutput/JobOutput.js:811
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr "作业删除错误"
-#: screens/Job/JobDetail/JobDetail.js:98
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr "作业 ID"
@@ -4531,33 +4635,33 @@ msgid "Job Runs"
msgstr "作业运行"
#: components/JobList/JobListItem.js:313
-#: screens/Job/JobDetail/JobDetail.js:298
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr "作业分片"
#: components/JobList/JobListItem.js:318
-#: screens/Job/JobDetail/JobDetail.js:305
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr "任务分片父级"
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr "作业分片"
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr "作业状态"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:377
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr "作业标签"
@@ -4566,9 +4670,9 @@ msgstr "作业标签"
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:124
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr "任务模板"
@@ -4576,13 +4680,13 @@ msgstr "任务模板"
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 "作业模板默认凭证必须替换为相同类型之一。请为以下类型选择一个凭证才能继续: {0}"
-#: screens/Credential/Credential.js:78
-#: screens/Credential/Credentials.js:29
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventory.js:73
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
#: screens/Inventory/SmartInventory.js:74
-#: screens/Project/Project.js:106
-#: screens/Project/Projects.js:31
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4597,15 +4701,15 @@ msgstr "在创建或编辑节点时无法选择缺失的清单或项目的作业
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr "在创建或编辑节点时无法选择具有提示密码凭证的作业模板"
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:158
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr "作业类型"
@@ -4617,35 +4721,35 @@ msgstr "作业状态"
msgid "Job status graph tab"
msgstr "作业状态图标签页"
-#: components/RelatedTemplateList/RelatedTemplateList.js:141
-#: components/RelatedTemplateList/RelatedTemplateList.js:191
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
msgid "Job templates"
msgstr "作业模板"
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
#: routeConfig.js:39
-#: screens/ActivityStream/ActivityStream.js:144
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
#: screens/InstanceGroup/ContainerGroup.js:71
-#: screens/InstanceGroup/InstanceGroup.js:78
-#: screens/InstanceGroup/InstanceGroups.js:62
-#: screens/InstanceGroup/InstanceGroups.js:67
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:69
-#: screens/Inventory/Inventory.js:69
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
#: screens/Inventory/SmartInventory.js:70
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr "作业"
@@ -4653,27 +4757,27 @@ msgstr "作业"
msgid "Jobs settings"
msgstr "作业设置"
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr "7 月"
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr "6 月"
-#: components/Search/AdvancedSearch.js:256
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr "密钥"
-#: components/Search/AdvancedSearch.js:247
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr "键选择"
-#: components/Search/AdvancedSearch.js:250
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr "键 typeahead"
-#: screens/ActivityStream/ActivityStream.js:232
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr "关键词"
@@ -4730,44 +4834,45 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
-#: components/RelatedTemplateList/RelatedTemplateList.js:163
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr "标志"
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr "标签名称"
#: components/JobList/JobListItem.js:283
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:349
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:108
-#: screens/Inventory/shared/InventoryForm.js:74
-#: screens/Job/JobDetail/JobDetail.js:357
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr "标签"
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr "最后"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr "最后的健康检查"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr "最后的作业状态"
@@ -4775,36 +4880,36 @@ msgstr "最后的作业状态"
msgid "Last Login"
msgstr "最近登陆"
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:319
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:94
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:136
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:436
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr "最后修改"
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:136
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4813,12 +4918,12 @@ msgstr "最后修改"
msgid "Last Name"
msgstr "姓氏"
-#: components/TemplateList/TemplateList.js:244
-#: components/TemplateList/TemplateListItem.js:185
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr "最后运行"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr "最后运行"
@@ -4826,19 +4931,19 @@ msgstr "最后运行"
msgid "Last job"
msgstr "最后作业"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr "最后修改"
-#: components/ResourceAccessList/ResourceAccessList.js:182
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr "姓氏"
-#: screens/Project/ProjectList/ProjectListItem.js:305
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr "最后使用"
@@ -4846,18 +4951,18 @@ msgstr "最后使用"
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr "启动"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr "启动管理作业"
+#~ msgid "Launch Management Job"
+#~ msgstr "启动管理作业"
-#: components/TemplateList/TemplateListItem.js:205
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr "启动模板"
@@ -4870,7 +4975,7 @@ msgstr "启动模板"
msgid "Launch management job"
msgstr "启动管理作业"
-#: components/TemplateList/TemplateListItem.js:213
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr "启动模板"
@@ -4887,15 +4992,19 @@ msgstr "启动 | {0}"
msgid "Launched By"
msgstr "启动者"
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr "启动者(用户名)"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
-msgstr "了解更多有关 Insights for Ansible Automation Platform 的信息"
+msgid "Learn more about Automation Analytics"
+msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr "了解更多有关 Insights for Ansible Automation Platform 的信息"
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr "将此字段留空以使执行环境全局可用。"
@@ -4914,19 +5023,20 @@ msgstr "小于比较。"
msgid "Less than or equal to comparison."
msgstr "小于或等于比较。"
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:262
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr "限制"
@@ -4942,15 +5052,15 @@ msgstr "正在加载"
msgid "Local"
msgstr "本地"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr "本地时区"
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr "本地时区"
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr "登录"
@@ -4969,7 +5079,7 @@ msgid "Logout"
msgstr "退出"
#: components/Lookup/HostFilterLookup.js:366
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr "查找 modal"
@@ -4985,9 +5095,9 @@ msgstr "查找类型"
msgid "Lookup typeahead"
msgstr "查找 typeahead"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr "最新同步"
@@ -4995,11 +5105,11 @@ msgstr "最新同步"
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:313
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr "机器凭证"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr "管理的"
@@ -5008,13 +5118,13 @@ msgstr "管理的"
msgid "Managed nodes"
msgstr "受管的节点"
-#: components/JobList/JobList.js:211
+#: components/JobList/JobList.js:215
#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr "管理作业"
@@ -5023,7 +5133,7 @@ msgstr "管理作业"
msgid "Management Jobs"
msgstr "管理作业"
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr "管理作业"
@@ -5032,11 +5142,11 @@ msgstr "管理作业"
msgid "Management job launch error"
msgstr "管理作业启动错误"
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr "未找到管理作业。"
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr "管理作业"
@@ -5044,18 +5154,19 @@ msgstr "管理作业"
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
#: screens/Project/ProjectList/ProjectList.js:197
-#: screens/Project/ProjectList/ProjectListItem.js:211
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr "手动"
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr "3 月"
@@ -5064,20 +5175,20 @@ msgstr "3 月"
msgid "Mattermost"
msgstr "Mattermost"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr "最大主机数"
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr "最大值"
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr "最大长度"
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr "5 月"
@@ -5102,27 +5213,29 @@ msgstr "指标"
msgid "Microsoft Azure Resource Manager"
msgstr "Microsoft Azure Resource Manager"
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr "最小值"
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr "最小长度"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr "新实例上线时自动分配给此组的最小实例数量。"
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
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.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr "分钟"
@@ -5143,23 +5256,23 @@ msgid "Miscellaneous System settings"
msgstr "杂项系统设置"
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr "缺少"
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr "缺少资源"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr "修改"
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5170,7 +5283,7 @@ msgstr "修改"
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
-#: components/RelatedTemplateList/RelatedTemplateList.js:155
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
#: components/TemplateList/TemplateList.js:230
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
@@ -5179,7 +5292,7 @@ msgstr "修改"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
-#: screens/Credential/CredentialList/CredentialList.js:155
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
@@ -5207,33 +5320,33 @@ msgstr "修改者(用户名)"
msgid "Modified by (username)"
msgstr "修改者(用户名)"
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr "模块"
-#: screens/Job/JobDetail/JobDetail.js:428
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr "模块参数"
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr "模块名称"
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr "周一"
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr "周一"
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr "月"
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr "更多信息"
@@ -5241,13 +5354,13 @@ msgstr "更多信息"
msgid "More information for"
msgstr "更多信息"
-#: screens/Template/Survey/SurveyReorderModal.js:159
-#: screens/Template/Survey/SurveyReorderModal.js:160
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr "多选"
-#: screens/Template/Survey/SurveyReorderModal.js:143
-#: screens/Template/Survey/SurveyReorderModal.js:144
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr "多选"
@@ -5259,7 +5372,7 @@ msgstr "多项选择(多选)"
msgid "Multiple Choice (single select)"
msgstr "多项选择(单选)"
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr "多项选择选项"
@@ -5267,13 +5380,13 @@ msgstr "多项选择选项"
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
@@ -5305,15 +5418,15 @@ msgstr "多项选择选项"
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
-#: components/RelatedTemplateList/RelatedTemplateList.js:146
-#: components/RelatedTemplateList/RelatedTemplateList.js:171
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
+#: components/Schedule/shared/ScheduleForm.js:107
#: components/TemplateList/TemplateList.js:205
#: components/TemplateList/TemplateList.js:242
#: components/TemplateList/TemplateListItem.js:142
@@ -5329,18 +5442,18 @@ msgstr "多项选择选项"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:142
-#: screens/Credential/CredentialList/CredentialList.js:161
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
@@ -5350,14 +5463,14 @@ msgstr "多项选择选项"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
@@ -5372,8 +5485,8 @@ msgstr "多项选择选项"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
#: screens/InstanceGroup/Instances/InstanceList.js:188
#: screens/InstanceGroup/Instances/InstanceList.js:204
-#: screens/InstanceGroup/Instances/InstanceList.js:253
-#: screens/InstanceGroup/Instances/InstanceList.js:286
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
@@ -5403,15 +5516,15 @@ msgstr "多项选择选项"
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:41
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5434,40 +5547,40 @@ msgstr "多项选择选项"
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
#: screens/Project/ProjectList/ProjectList.js:185
#: screens/Project/ProjectList/ProjectList.js:221
#: screens/Project/ProjectList/ProjectListItem.js:179
-#: screens/Project/shared/ProjectForm.js:169
+#: screens/Project/shared/ProjectForm.js:170
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:215
-#: screens/Template/Survey/SurveyReorderModal.js:235
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5475,10 +5588,10 @@ msgstr "多项选择选项"
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr "名称"
@@ -5486,9 +5599,9 @@ msgstr "名称"
msgid "Navigation"
msgstr "导航"
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr "永不"
@@ -5496,22 +5609,21 @@ msgstr "永不"
msgid "Never Updated"
msgstr "永不更新"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr "永不过期"
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr "新"
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5520,27 +5632,27 @@ msgstr "新"
msgid "Next"
msgstr "下一"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr "下次运行"
-#: components/Search/Search.js:221
+#: components/Search/Search.js:232
msgid "No"
msgstr "否"
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr "未匹配主机"
-#: screens/Job/JobOutput/JobOutputSearch.js:109
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr "没有剩余主机"
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr "没有可用的 JSON"
@@ -5549,12 +5661,12 @@ msgid "No Jobs"
msgstr "没有作业"
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr "没有可用的标准错误"
+#~ msgid "No Standard Error Available"
+#~ msgstr "没有可用的标准错误"
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr "没有可用的标准输出"
+#~ msgid "No Standard Out Available"
+#~ msgstr "没有可用的标准输出"
#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
@@ -5564,7 +5676,7 @@ msgstr "没有清单同步失败。"
msgid "No items found."
msgstr "没有找到项。"
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr "没有可用作业数据。"
@@ -5572,7 +5684,7 @@ msgstr "没有可用作业数据。"
msgid "No output found for this job."
msgstr "没有为该作业找到输出。"
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr "未找到结果"
@@ -5581,20 +5693,20 @@ msgstr "未找到结果"
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
#: components/Search/AdvancedSearch.js:151
-#: components/Search/AdvancedSearch.js:261
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:142
-#: components/Search/Search.js:191
-#: components/Search/Search.js:215
-#: screens/ActivityStream/ActivityStream.js:136
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:163
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr "没有找到结果"
@@ -5612,22 +5724,22 @@ msgid "No {pluralizedItemName} Found"
msgstr "未找到 {pluralizedItemName}。"
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr "节点别名"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
#: screens/InstanceGroup/Instances/InstanceList.js:193
-#: screens/InstanceGroup/Instances/InstanceList.js:255
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr "节点类型"
@@ -5643,11 +5755,11 @@ msgstr "节点类型"
msgid "None"
msgstr "无"
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr "无(运行一次)"
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr "无(运行一次)"
@@ -5670,7 +5782,7 @@ msgstr "没有配置"
msgid "Not configured for inventory sync."
msgstr "没有为清单同步配置。"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5694,11 +5806,11 @@ msgstr "注:选择它们的顺序设定执行优先级。选择多个来启用
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr "注意:这些凭据的顺序设置内容同步和查找的优先级。选择多个来启用拖放。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "注意:该字段假设远程名称为“origin”。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5708,7 +5820,7 @@ msgid ""
"password information."
msgstr "备注:在将 SSH 协议用于 GitHub 或 Bitbucket 时,只需输入 SSH 密钥,而不要输入用户名(除 git 外)。另外,GitHub 和 Bitbucket 在使用 SSH 时不支持密码验证。GIT 只读协议 (git://) 不使用用户名或密码信息。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr "通知颜色"
@@ -5717,11 +5829,11 @@ msgstr "通知颜色"
msgid "Notification Template not found."
msgstr "没有找到通知模板。"
-#: screens/ActivityStream/ActivityStream.js:192
+#: screens/ActivityStream/ActivityStream.js:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr "通知模板"
@@ -5730,7 +5842,7 @@ msgstr "通知模板"
msgid "Notification Type"
msgstr "通知类型"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr "通知颜色"
@@ -5738,7 +5850,7 @@ msgstr "通知颜色"
msgid "Notification sent successfully"
msgstr "发送通知成功"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr "通知测试失败。"
@@ -5753,25 +5865,25 @@ msgstr "通知类型"
#: components/NotificationList/NotificationList.js:177
#: routeConfig.js:122
-#: screens/Inventory/Inventories.js:92
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:113
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr "通知"
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr "11月"
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5779,69 +5891,75 @@ msgid "OK"
msgstr "确定"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr "发生次数"
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr "10 月"
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr "关"
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr "于"
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr "失败时"
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr "成功时"
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr "于日期"
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr "于日"
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr "唯一分组标准"
@@ -5849,26 +5967,31 @@ msgstr "唯一分组标准"
msgid "OpenStack"
msgstr "OpenStack"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr "选项详情"
-#: screens/Inventory/shared/InventoryForm.js:77
+#: screens/Inventory/shared/Inventory.helptext.js:25
msgid ""
"Optional labels that describe this inventory,\n"
"such as 'dev' or 'test'. Labels can be used to group and filter\n"
"inventories and completed jobs."
msgstr "描述此清单的可选标签,如 'dev' 或 'test'。标签可用于对清单和完成的作业进行分组和过滤。"
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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 "描述此作业模板的可选标签,如 'dev' 或 'test'。标签可用于对作业模板和完成的作业进行分组和过滤。"
-#: screens/Template/shared/WebhookSubForm.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证。"
@@ -5876,15 +5999,15 @@ msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr "选项"
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:214
-#: screens/Template/Survey/SurveyReorderModal.js:230
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr "Order"
@@ -5892,19 +6015,20 @@ msgstr "Order"
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:275
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
@@ -5912,19 +6036,19 @@ msgstr "Order"
#: screens/Inventory/InventoryList/InventoryList.js:191
#: screens/Inventory/InventoryList/InventoryList.js:221
#: screens/Inventory/InventoryList/InventoryListItem.js:119
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:279
-#: screens/Project/ProjectList/ProjectListItem.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5939,19 +6063,19 @@ msgstr "机构(名称)"
msgid "Organization Name"
msgstr "机构名称"
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr "未找到机构。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:96
-#: screens/ActivityStream/ActivityStream.js:175
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5966,34 +6090,39 @@ msgstr "其他提示"
msgid "Out of compliance"
msgstr "不合规"
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr "输出"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr "覆盖"
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr "从远程清单源覆盖本地组和主机"
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr "从远程清单源覆盖本地变量"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr "覆盖变量"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr "POST"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr "PUT"
@@ -6002,11 +6131,11 @@ msgstr "PUT"
msgid "Pagerduty"
msgstr "Pagerduty"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr "Pagerduty 子域"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr "Pagerduty 子域"
@@ -6030,24 +6159,30 @@ msgstr "Pan 右"
msgid "Pan Up"
msgstr "Pan 上"
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "传递额外的命令行更改。有两个 ansible 命令行参数:"
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML \n"
-"或 JSON 提供键/值对。示例语法请参阅相关文档。"
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr ""
+#~ "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML \n"
+#~ "或 JSON 提供键/值对。示例语法请参阅相关文档。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax."
msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。示例语法请参阅 Ansible Tower 文档。"
-#: screens/Login/Login.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6072,8 +6207,8 @@ msgstr "过去两周"
msgid "Past week"
msgstr "过去一周"
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr "待处理"
@@ -6090,7 +6225,7 @@ msgstr "等待删除"
msgid "Perform a search to define a host filter"
msgstr "执行搜索以定义主机过滤器"
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr "个人访问令牌"
@@ -6099,7 +6234,7 @@ msgstr "个人访问令牌"
msgid "Personal access token"
msgstr "个人访问令牌"
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr "Play"
@@ -6107,45 +6242,45 @@ msgstr "Play"
msgid "Play Count"
msgstr "play 数量"
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr "Play 已启动"
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:259
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr "Playbook"
#: components/JobList/JobListItem.js:44
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr "Playbook 检查"
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr "Playbook 完成"
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr "Playbook 目录"
-#: components/JobList/JobList.js:209
+#: components/JobList/JobList.js:213
#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:72
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr "Playbook 运行"
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr "Playbook 已启动"
-#: components/RelatedTemplateList/RelatedTemplateList.js:159
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
@@ -6185,27 +6320,27 @@ msgstr "请点开始按钮开始。"
msgid "Please enter a valid URL"
msgstr "请输入有效的 URL。"
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr "请输入一个值。"
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr "请登录"
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr "请运行一个作业来填充此列表"
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr "选择的日数字应介于 1 到 31 之间。"
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr "请选择一个清单或者选中“启动时提示”选项"
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr "请选择一个比开始日期/时间晚的结束日期/时间。"
@@ -6221,13 +6356,13 @@ msgstr "请使用上面的过滤器尝试另一个搜索"
msgid "Please wait until the topology view is populated..."
msgstr "请等到拓扑视图被填充..."
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr "Pod 规格覆写"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr "策略类型"
@@ -6237,7 +6372,7 @@ msgstr "策略类型"
msgid "Policy instance minimum"
msgstr "策略实例最小值"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:68
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr "策略实例百分比"
@@ -6256,12 +6391,12 @@ msgid ""
"examples."
msgstr "使用搜索过滤器填充此清单的主机。例如:ansible_facts__ansible_distribution:\"RedHat\"。如需语法和实例的更多信息,请参阅相关文档。请参阅 Ansible Tower 文档来获得更多信息。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr "端口"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr "在有多个父对象时运行此节点的先决条件。请参阅"
@@ -6271,10 +6406,18 @@ msgid ""
"choice per line."
msgstr "按 'Enter' 添加更多回答选择。每行一个回答选择。"
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr "按 Enter 进行编辑。按 ESC 停止编辑。"
+#: components/SelectedList/DraggableSelectedList.js:85
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
+
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
msgid "Preview"
@@ -6284,9 +6427,9 @@ msgstr "预览"
msgid "Private key passphrase"
msgstr "私钥密码"
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr "权限升级"
@@ -6294,40 +6437,44 @@ msgstr "权限升级"
msgid "Privilege escalation password"
msgstr "权限升级密码"
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:303
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:225
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr "项目"
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr "项目基本路径"
#: screens/Job/JobDetail/JobDetail.js:230
-msgid "Project Status"
-msgstr "项目状态"
+#~ msgid "Project Status"
+#~ msgstr "项目状态"
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr "项目同步"
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:221
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr "项目同步错误"
@@ -6335,11 +6482,19 @@ msgstr "项目同步错误"
msgid "Project Update"
msgstr "项目更新"
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
#: screens/Project/ProjectList/ProjectList.js:132
msgid "Project copied successfully"
msgstr "成功复制的项目"
-#: screens/Project/Project.js:135
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr "未找到项目。"
@@ -6349,12 +6504,12 @@ msgstr "项目同步失败"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
#: routeConfig.js:75
-#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
#: screens/Project/ProjectList/ProjectList.js:180
#: screens/Project/ProjectList/ProjectList.js:249
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6365,18 +6520,18 @@ msgstr "项目"
msgid "Promote Child Groups and Hosts"
msgstr "提升子组和主机"
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr "提示"
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr "提示覆盖"
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr "启动时提示"
@@ -6384,13 +6539,12 @@ msgstr "启动时提示"
msgid "Prompt | {0}"
msgstr "提示 | {0}"
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr "提示的值"
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6398,7 +6552,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6406,15 +6560,21 @@ msgid ""
"information and examples on patterns."
msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr "为这个字段输入值或者选择「启动时提示」选项。"
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
-msgstr "使用 YAML 或 JSON 提供\n"
+msgstr ""
+"使用 YAML 或 JSON 提供\n"
"键/值对。"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:191
@@ -6426,32 +6586,40 @@ msgid ""
msgstr "提供您的 Red Hat 或 Red Hat Satellite 凭证,可从可用许可证列表中进行选择。您使用的凭证会被保存,以供将来用于续订或扩展订阅。"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
-msgstr "提供您的 Red Hat 或 Red Hat Satellite 凭证,以便为 Ansible Automation Platform 启用 Insights。"
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
+msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr "提供您的 Red Hat 或 Red Hat Satellite 凭证,以便为 Ansible Automation Platform 启用 Insights。"
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr "部署回调 URL"
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr "置备回调详情"
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr "置备回调"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr "Pull"
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr "问题"
@@ -6463,14 +6631,14 @@ msgstr "RADIUS"
msgid "RADIUS settings"
msgstr "RADIUS 设置"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr "RAM {0}"
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr "读取"
@@ -6490,9 +6658,9 @@ msgstr "最近模板"
msgid "Recent Templates list tab"
msgstr "最近模板列表标签页"
-#: components/RelatedTemplateList/RelatedTemplateList.js:173
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr "最近的作业"
@@ -6511,6 +6679,7 @@ msgstr "Red Hat Ansible Automation Platform"
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
+#: screens/Job/JobDetail/JobDetail.js:76
#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
@@ -6532,13 +6701,14 @@ msgstr "Red Hat 订阅清单"
msgid "Red Hat, Inc."
msgstr "Red Hat, Inc."
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr "重定向 URI"
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr "重定向 URI"
+#~ msgid "Redirect uris"
+#~ msgstr "重定向 URI"
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6548,15 +6718,20 @@ msgstr "重定向到仪表板"
msgid "Redirecting to subscription detail"
msgstr "重定向到订阅详情"
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr "请参阅"
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
-msgstr "有关配置文件的详情请参阅 Ansible 文档。"
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr "有关配置文件的详情请参阅 Ansible 文档。"
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
+msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
msgid "Refresh Token"
@@ -6574,25 +6749,26 @@ msgstr "重新刷新修订版本"
msgid "Refresh project revision"
msgstr "重新刷新项目修订版本"
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr "区域"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr "registry 凭证"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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.js:80
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr "相关组"
-#: components/Search/AdvancedSearch.js:282
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr "相关密钥"
@@ -6607,8 +6783,8 @@ msgstr "相关的搜索类型 typeahead"
#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:477
-#: screens/Job/JobDetail/JobDetail.js:485
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr "重新启动"
@@ -6639,12 +6815,13 @@ msgstr "使用主机参数重新启动"
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
+#: screens/Job/JobDetail/JobDetail.js:77
#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr "远程归档"
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6663,11 +6840,11 @@ msgstr "删除链接"
msgid "Remove Node {nodeName}"
msgstr "删除节点 {nodeName}"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr "在进行更新前删除任何本地修改。"
-#: components/Search/AdvancedSearch.js:201
+#: components/Search/AdvancedSearch.js:206
msgid "Remove the current search related to ansible facts to enable another search using this key."
msgstr "删除与 ansible 事实相关的当前搜索,以启用使用此键的另一个搜索。"
@@ -6683,15 +6860,19 @@ msgstr "删除 {0} 芯片"
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.js:271
+#: components/SelectedList/DraggableSelectedList.js:83
+msgid "Reorder"
+msgstr ""
+
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr "重复频率"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr "替换"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr "使用新值替换项"
@@ -6701,7 +6882,7 @@ msgid "Request subscription"
msgstr "请求订阅"
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr "必需"
@@ -6711,7 +6892,7 @@ msgid "Reset zoom"
msgstr "重新设置缩放"
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6722,7 +6903,7 @@ msgid "Resource deleted"
msgstr "资源已删除"
#: routeConfig.js:61
-#: screens/ActivityStream/ActivityStream.js:153
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr "资源"
@@ -6734,18 +6915,18 @@ msgstr "此模板中缺少资源。"
msgid "Restore initial value."
msgstr "恢复初始值。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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 "从给定的主机变量字典中检索启用的状态。启用的变量可以使用点符号来指定,如 'foo.bar'"
-#: components/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:795
-#: screens/Job/JobOutput/JobOutput.js:798
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr "返回"
@@ -6765,7 +6946,7 @@ msgstr "返回满足这个及其他过滤器的结果。如果没有进行选择
msgid "Returns results that satisfy this one or any other filters."
msgstr "返回满足这个或任何其他过滤器的结果。"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6780,7 +6961,7 @@ msgstr "恢复所有"
msgid "Revert all to default"
msgstr "全部恢复为默认值"
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr "将字段恢复到之前保存的值"
@@ -6792,13 +6973,13 @@ msgstr "恢复设置"
msgid "Revert to factory default."
msgstr "恢复到工厂默认值。"
-#: screens/Job/JobDetail/JobDetail.js:254
+#: screens/Job/JobDetail/JobDetail.js:309
#: screens/Project/ProjectList/ProjectList.js:224
-#: screens/Project/ProjectList/ProjectListItem.js:213
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr "修订"
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr "修订号"
@@ -6818,56 +6999,63 @@ msgstr "Rocket.Chat"
msgid "Role"
msgstr "角色"
-#: components/ResourceAccessList/ResourceAccessList.js:143
-#: components/ResourceAccessList/ResourceAccessList.js:156
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr "角色"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr "运行"
-#: components/AdHocCommands/AdHocCommands.js:138
-#: components/AdHocCommands/AdHocCommands.js:142
-#: components/AdHocCommands/AdHocCommands.js:148
-#: components/AdHocCommands/AdHocCommands.js:152
-#: screens/Job/JobDetail/JobDetail.js:73
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
+#: components/AdHocCommands/AdHocCommands.js:141
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr "运行命令"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr "对实例运行健康检查"
-#: components/AdHocCommands/AdHocCommands.js:132
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr "运行临时命令"
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr "运行命令"
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr "运行每"
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr "运行频率"
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr "运行于"
@@ -6875,25 +7063,30 @@ msgstr "运行于"
msgid "Run type"
msgstr "运行类型"
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr "运行中"
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr "正在运行的处理程序"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr "运行作业"
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr "运行作业"
@@ -6919,7 +7112,7 @@ msgstr "社交"
msgid "SSH password"
msgstr "SSH 密码"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr "SSL 连接"
@@ -6929,36 +7122,36 @@ msgid "START"
msgstr "开始"
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr "状态:"
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr "周六"
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr "周六"
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:131
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:202
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6984,12 +7177,16 @@ msgstr "保存成功!"
msgid "Schedule"
msgstr "调度"
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr "调度详情"
-#: screens/Inventory/Inventories.js:91
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr "调度详情"
@@ -7001,7 +7198,7 @@ msgstr "调度处于活跃状态。"
msgid "Schedule is inactive"
msgstr "调度处于非活跃状态。"
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr "调度缺少规则"
@@ -7012,30 +7209,34 @@ msgstr "未找到调度。"
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
#: routeConfig.js:44
-#: screens/ActivityStream/ActivityStream.js:147
-#: screens/Inventory/Inventories.js:88
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:119
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr "调度"
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr "范围"
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr "滚动到第一"
@@ -7053,7 +7254,7 @@ msgid "Scroll previous"
msgstr "滚动到前一个"
#: components/Lookup/HostFilterLookup.js:289
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr "搜索"
@@ -7061,12 +7262,12 @@ msgstr "搜索"
msgid "Search is disabled while the job is running"
msgstr "作业运行时会禁用搜索"
-#: components/Search/AdvancedSearch.js:306
-#: components/Search/Search.js:248
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr "搜索提交按钮"
-#: components/Search/Search.js:237
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr "搜索文本输入"
@@ -7074,24 +7275,24 @@ msgstr "搜索文本输入"
msgid "Searching by ansible_facts requires special syntax. Refer to the"
msgstr "根据 ansible_facts 搜索需要特殊的语法。请参阅"
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr "秒"
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr "秒"
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr "在左侧查看错误"
#: components/JobList/JobListItem.js:84
#: components/Lookup/HostFilterLookup.js:379
-#: components/Lookup/Lookup.js:193
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
@@ -7107,7 +7308,7 @@ msgstr "编辑凭证类型"
msgid "Select Groups"
msgstr "选择组"
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr "选择主机"
@@ -7115,7 +7316,7 @@ msgstr "选择主机"
msgid "Select Input"
msgstr "选择输入"
-#: screens/InstanceGroup/Instances/InstanceList.js:282
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr "选择实例"
@@ -7123,7 +7324,7 @@ msgstr "选择实例"
msgid "Select Items"
msgstr "选择项"
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr "从列表中选择项"
@@ -7131,7 +7332,7 @@ msgstr "从列表中选择项"
msgid "Select Labels"
msgstr "选择标签"
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr "选择要应用的角色"
@@ -7143,25 +7344,27 @@ msgstr "选择团队"
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr "选择一个 JSON 格式的服务帐户密钥来自动填充以下字段。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr "选择节点类型"
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr "选择资源类型"
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr "为工作模板选择一个分支。此分支应用于提示分支的所有作业模板节点。"
+#~ 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.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js: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.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点。"
@@ -7177,16 +7380,16 @@ msgstr "选择要取消的作业"
msgid "Select a metric"
msgstr "选择一个指标"
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr "选择一个模块"
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr "选择一个 playbook"
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr "在编辑执行环境前选择一个项目。"
@@ -7195,8 +7398,8 @@ msgid "Select a question to delete"
msgstr "选择要删除的问题"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr "选择要批准的行"
+#~ msgid "Select a row to approve"
+#~ msgstr "选择要批准的行"
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7204,10 +7407,10 @@ msgid "Select a row to delete"
msgstr "选择要删除的行"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr "选择要拒绝的行"
+#~ msgid "Select a row to deny"
+#~ msgstr "选择要拒绝的行"
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr "选择要解除关联的行"
@@ -7216,49 +7419,51 @@ msgid "Select a subscription"
msgstr "导入一个订阅"
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:63
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr "为这个字段选择一个值"
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr "选择 Webhook 服务。"
+#: components/DataListToolbar/DataListToolbar.js:121
#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr "选择所有"
-#: screens/ActivityStream/ActivityStream.js:123
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr "选择一个活动类型"
@@ -7274,7 +7479,7 @@ msgstr "选择一个实例和一个指标来显示图表"
msgid "Select an instance to run a health check."
msgstr "选择一个要运行健康检查的实例。"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr "为工作流选择清单。此清单应用于提示清单的所有工作流节点。"
@@ -7282,30 +7487,39 @@ msgstr "为工作流选择清单。此清单应用于提示清单的所有工作
msgid "Select an option"
msgstr "选择一个选项"
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr "在编辑默认执行环境前选择一个机构。"
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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 "选择允许访问将运行此作业的节点的凭证。每种类型您只能选择一个凭证。对于机器凭证 (SSH),如果选中了“启动时提示”但未选择凭证,您需要在运行时选择机器凭证。如果选择了凭证并选中了“启动时提示”,则所选凭证将变为默认设置,可以在运行时更新。"
+#~ msgid ""
+#~ "Select credentials for accessing 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 "选择允许访问将运行此作业的节点的凭证。每种类型您只能选择一个凭证。对于机器凭证 (SSH),如果选中了“启动时提示”但未选择凭证,您需要在运行时选择机器凭证。如果选择了凭证并选中了“启动时提示”,则所选凭证将变为默认设置,可以在运行时更新。"
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:85
+#: screens/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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/Project.helptext.js:18
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 "从位于项目基本路径的目录列表中进行选择。基本路径和 playbook 目录一起提供了用于定位 playbook 的完整路径。"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:99
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr "从列表中选择项"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7321,13 +7535,13 @@ msgstr "选择选项"
msgid "Select period"
msgstr "选择周期"
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:118
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr "选择要应用的角色"
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr "选择源路径"
@@ -7349,75 +7563,90 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr "选择要运行此清单的实例组。"
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
-msgstr "选择要运行此任务模板的实例组。"
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr "选择要运行此任务模板的实例组。"
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
+msgstr ""
#: screens/Organization/shared/OrganizationForm.js:83
msgid "Select the Instance Groups for this Organization to run on."
msgstr "选择要运行此机构的实例组。"
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr "选择此令牌所属的应用,或将此字段留空以创建个人访问令牌。"
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr "选择此令牌所属的应用,或将此字段留空以创建个人访问令牌。"
#: components/AdHocCommands/AdHocCredentialStep.js:104
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 "选择要在访问远程主机时用来运行命令的凭证。选择包含 Ansbile 登录远程主机所需的用户名和 SSH 密钥或密码的凭证。"
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr "为此作业模板选择执行环境。"
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
msgstr "选择包含此作业要管理的主机的清单。"
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
+msgstr ""
+
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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 "选择要由此源同步的清单文件。您可以从下拉列表中选择,或者在输入中输入一个文件。"
+#~ 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.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr "选择此主机要属于的清单。"
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr "选择要由此作业执行的 playbook。"
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
-msgstr "选择包含此作业要执行的 playbook 的项目。"
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr "选择包含此作业要执行的 playbook 的项目。"
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
+msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr "选择要使用的 Ansible Automation Platform 订阅。"
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr "选择 {0}"
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
#: components/TemplateList/TemplateListItem.js:140
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:126
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
#: screens/Credential/CredentialList/CredentialListItem.js:56
@@ -7439,7 +7668,7 @@ msgstr "选择 {0}"
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr "已选择"
@@ -7450,20 +7679,20 @@ msgstr "已选择"
msgid "Selected Category"
msgstr "选择的类别"
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr "选定日期范围必须至少有 1 个计划发生。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr "发件人电子邮件"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr "发件人电子邮件"
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr "9 月"
@@ -7472,7 +7701,7 @@ msgid "Service account JSON file"
msgstr "服务账户 JSON 文件"
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr "为这个字段设置值"
@@ -7484,7 +7713,7 @@ msgstr "设置数据应保留的天数。"
msgid "Set preferences for data collection, logos, and logins"
msgstr "为数据收集、日志和登录设置偏好"
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr "设置源路径为"
@@ -7492,7 +7721,7 @@ msgstr "设置源路径为"
msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance."
msgstr "设置实例被启用或禁用。如果禁用,则不会将作业分配给此实例。"
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr "根据客户端设备的安全情况,设置为公共或机密。"
@@ -7500,7 +7729,7 @@ msgstr "根据客户端设备的安全情况,设置为公共或机密。"
msgid "Set type"
msgstr "设置类型"
-#: components/Search/AdvancedSearch.js:233
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr "为相关搜索字段模糊搜索设置类型禁用"
@@ -7530,8 +7759,8 @@ msgstr "设置名称"
#: routeConfig.js:159
#: routeConfig.js:163
-#: screens/ActivityStream/ActivityStream.js:214
-#: screens/ActivityStream/ActivityStream.js:216
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr "设置"
@@ -7540,17 +7769,17 @@ msgstr "设置"
msgid "Show"
msgstr "显示"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr "显示更改"
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr "显示更改"
@@ -7567,72 +7796,72 @@ msgstr "显示更少"
msgid "Show only root groups"
msgstr "只显示 root 组"
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr "使用 Azure AD 登陆"
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr "使用 GitHub 登陆"
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr "使用 GitHub Enterprise 登录"
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr "使用 GitHub Enterprise Organizations 登录"
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr "使用 GitHub Enterprise Teams 登录"
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr "使用 GitHub Organizations 登录"
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr "使用 GitHub Teams 登录"
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr "使用 Google 登录"
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr "使用 SAML 登陆"
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr "使用 SAML {samlIDP} 登陆"
-#: components/Search/Search.js:134
-#: components/Search/Search.js:135
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr "简单键选择"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:401
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr "跳过标签"
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr "如果有大型一个 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签很有用。使用逗号分隔多个标签。请参阅相关文档了解使用标签的详情。"
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr "如果有大型一个 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签很有用。使用逗号分隔多个标签。请参阅相关文档了解使用标签的详情。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7640,11 +7869,16 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "如果有一个大的 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr "跳过"
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr "跳过'"
@@ -7666,15 +7900,15 @@ msgid "Smart Inventory not found."
msgstr "未找到智能清单"
#: components/Lookup/HostFilterLookup.js:344
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr "智能主机过滤器"
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr "智能清单"
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr "前面的一些步骤有错误"
@@ -7696,51 +7930,53 @@ msgid "Sort"
msgstr "排序"
#: components/JobList/JobListItem.js:170
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:197
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr "源"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:248
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr "源控制分支"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr "源控制分支/标签/提交"
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr "源控制凭证"
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr "源控制 Refspec"
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr "源控制修订"
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
-#: screens/Project/shared/ProjectForm.js:214
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr "源控制类型"
@@ -7748,34 +7984,34 @@ msgstr "源控制类型"
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
#: screens/Project/ProjectList/ProjectList.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr "源控制 URL"
-#: components/JobList/JobList.js:207
+#: components/JobList/JobList.js:211
#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr "源控制更新"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr "源电话号码"
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr "源变量"
#: components/JobList/JobListItem.js:213
-#: screens/Job/JobDetail/JobDetail.js:148
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr "源工作流作业"
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr "源控制分支"
@@ -7783,12 +8019,12 @@ msgstr "源控制分支"
msgid "Source details"
msgstr "源详情"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr "源电话号码"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr "源变量"
@@ -7796,46 +8032,46 @@ msgstr "源变量"
msgid "Sourced from a project"
msgstr "来自项目的源"
-#: screens/Inventory/Inventories.js:83
-#: screens/Inventory/Inventory.js:67
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr "源"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr "以 JSON 格式指定 HTTP 标头。示例语法请参阅 Ansible Tower 文档。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr "指定通知颜色。可接受的颜色为十六进制颜色代码(示例:#3af 或者 #789abc)。"
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr "指定令牌访问的范围"
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr "指定令牌访问的范围"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr "指定应该执行此节点的条件"
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr "标准错误"
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr "标准输出"
+#~ msgid "Standard Out"
+#~ msgstr "标准输出"
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr "标准错误标签页"
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr "标准输出标签页"
+#~ msgid "Standard out tab"
+#~ msgstr "标准输出标签页"
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7844,7 +8080,7 @@ msgstr "标准输出标签页"
msgid "Start"
msgstr "开始"
-#: components/JobList/JobList.js:243
+#: components/JobList/JobList.js:247
#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr "开始时间"
@@ -7853,16 +8089,16 @@ msgstr "开始时间"
msgid "Start date"
msgstr "开始日期"
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr "开始日期/时间"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr "开始消息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr "开始消息正文"
@@ -7879,27 +8115,27 @@ msgstr "启动同步源"
msgid "Start time"
msgstr "开始时间"
-#: screens/Job/JobDetail/JobDetail.js:111
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr "已开始"
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
#: components/JobList/JobListItem.js:95
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:254
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
#: screens/Inventory/InventoryList/InventoryList.js:219
#: screens/Inventory/InventoryList/InventoryListItem.js:101
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
-#: screens/Job/JobDetail/JobDetail.js:102
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
@@ -7907,9 +8143,9 @@ msgstr "已开始"
#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
#: screens/TopologyView/Tooltip.js:98
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr "状态"
@@ -7927,7 +8163,7 @@ msgstr "Stdout"
msgid "Submit"
msgstr "提交"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7975,6 +8211,7 @@ msgstr "订阅表"
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
+#: screens/Job/JobDetail/JobDetail.js:75
#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
@@ -7982,22 +8219,22 @@ msgstr "Subversion"
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr "成功"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr "成功信息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr "成功消息正文"
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8007,24 +8244,24 @@ msgstr "成功"
msgid "Successful jobs"
msgstr "成功的作业"
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr "成功复制至剪贴板!"
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr "周日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr "周日"
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr "问卷调查"
@@ -8036,7 +8273,7 @@ msgstr "禁用问卷调查"
msgid "Survey Enabled"
msgstr "启用问卷调查"
-#: screens/Template/Survey/SurveyReorderModal.js:188
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr "问卷调查问题顺序"
@@ -8044,20 +8281,20 @@ msgstr "问卷调查问题顺序"
msgid "Survey Toggle"
msgstr "问卷调查切换"
-#: screens/Template/Survey/SurveyReorderModal.js:189
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr "问卷调查预览模态"
#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr "同步"
-#: screens/Project/ProjectList/ProjectListItem.js:230
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr "同步项目"
@@ -8071,11 +8308,11 @@ msgstr "全部同步"
msgid "Sync all sources"
msgstr "同步所有源"
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr "同步错误"
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr "修订版本同步"
@@ -8103,7 +8340,7 @@ msgstr "系统管理员"
msgid "System Auditor"
msgstr "系统审核员"
-#: screens/Job/JobOutput/JobOutputSearch.js:132
+#: screens/Job/JobOutput/JobOutputSearch.js:129
msgid "System Warning"
msgstr "系统警告"
@@ -8121,20 +8358,20 @@ msgid "TACACS+ settings"
msgstr "TACACS+ 设置"
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr "制表符"
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr "如果有一个大的 playbook,而您想要运行某个 play 或任务的特定部分,则标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr "如果有一个大的 playbook,而您想要运行某个 play 或任务的特定部分,则标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8142,24 +8379,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr "如果有一个大的 playbook,而您想要运行某个 play 或任务的特定部分,则标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr "注解的标签"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr "注解的标签(可选)"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr "目标 URL"
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr "任务"
@@ -8167,7 +8409,7 @@ msgstr "任务"
msgid "Task Count"
msgstr "任务计数"
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr "任务已启动"
@@ -8184,24 +8426,24 @@ msgstr "团队(team)"
msgid "Team Roles"
msgstr "团队角色"
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr "未找到团队"
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
#: routeConfig.js:106
-#: screens/ActivityStream/ActivityStream.js:181
-#: screens/Organization/Organization.js:124
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8209,27 +8451,27 @@ msgstr "未找到团队"
msgid "Teams"
msgstr "团队"
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr "模板"
-#: components/RelatedTemplateList/RelatedTemplateList.js:109
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
#: components/TemplateList/TemplateList.js:133
msgid "Template copied successfully"
msgstr "成功复制的模板"
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr "未找到模板"
#: components/TemplateList/TemplateList.js:200
-#: components/TemplateList/TemplateList.js:262
+#: components/TemplateList/TemplateList.js:263
#: routeConfig.js:65
-#: screens/ActivityStream/ActivityStream.js:158
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8238,7 +8480,7 @@ msgstr "模板"
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr "测试"
@@ -8259,11 +8501,11 @@ msgid "Test passed"
msgstr "测试通过"
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:178
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr "文本"
-#: screens/Template/Survey/SurveyReorderModal.js:132
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr "文本区"
@@ -8271,19 +8513,23 @@ msgstr "文本区"
msgid "Textarea"
msgstr "文本区"
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr "未找到该值。请输入或选择一个有效值。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr "The"
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr "用户必须用来获取此应用令牌的授予类型"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8291,45 +8537,89 @@ msgid ""
msgstr "电子邮件通知停止尝试到达主机并超时之前所经过的时间(以秒为单位)。范围为 1 秒到 120 秒。"
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
-msgstr "取消作业前运行的时间(以秒为单位)。默认为 0,即没有作业超时。"
+#~ msgid ""
+#~ "The amount of time (in seconds) to run\n"
+#~ "before the job is canceled. Defaults to 0 for no job\n"
+#~ "timeout."
+#~ msgstr "取消作业前运行的时间(以秒为单位)。默认为 0,即没有作业超时。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:152
+#: screens/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+msgstr ""
+
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
msgid ""
"The base URL of the Grafana server - the\n"
"/api/annotations endpoint will be added automatically to the base\n"
"Grafana URL."
msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。"
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr "用于本机构内作业的执行环境。当项目、作业模板或工作流没有显式分配执行环境时,则会使用它。"
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr "用于使用此项目的作业的执行环境。当作业模板或工作流没有在作业模板或工作流一级显式分配执行环境时,则会使用它。"
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
-msgstr "启动此作业模板时要使用的执行环境。解析的执行环境可以通过为此作业模板明确分配不同的执行环境来覆盖。"
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr "启动此作业模板时要使用的执行环境。解析的执行环境可以通过为此作业模板明确分配不同的执行环境来覆盖。"
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
+msgstr ""
+
+#: screens/Project/shared/Project.helptext.js:93
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 "第一次获取所有引用。第二次获取 Github 拉取请求号 62,在本示例中,分支需要为 \"pull/62/head\"。"
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr "完整镜像位置,包括容器 registry、镜像名称和版本标签。"
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8337,25 +8627,36 @@ msgid ""
"documentation for more details."
msgstr "允许由此机构管理的最大主机数。默认值为 0,表示无限制。请参阅 Ansible 文档以了解更多详情。"
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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 "执行 playbook 时使用的并行或同步进程数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。要覆盖默认分叉数,可更改"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
+msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 "执行 playbook 时使用的并行或同步进程数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。要覆盖默认分叉数,可更改"
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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 "执行 playbook 时使用的并行或同步进程数量。如果不输入值,则将使用 ansible 配置文件中的默认值。您可以找到更多信息"
#: components/ContentError/ContentError.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr "您请求的页面无法找到。"
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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 "用于将字段保留为清单中的目标主机的模式。留空、所有和 * 将针对清单中的所有主机。您可以找到有关 Ansible 主机模式的更多信息"
@@ -8363,7 +8664,7 @@ msgstr "用于将字段保留为清单中的目标主机的模式。留空、所
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr "该项目目前正在同步,且修订将在同步完成后可用。"
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr "项目必须在修订可用前同步。"
@@ -8381,7 +8682,7 @@ msgstr "已删除与该节点关联的资源。"
msgid "The search filter did not produce any results…"
msgstr "搜索过滤器没有产生任何结果…"
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8402,7 +8703,7 @@ msgstr "{project_base_dir} 中没有可用的 playbook 目录。该目录可能
msgid "There must be a value in at least one input"
msgstr "至少在一个输入中必须有一个值"
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr "登录时有问题。请重试。"
@@ -8414,31 +8715,36 @@ msgstr "加载此内容时出错。请重新加载页面。"
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr "解析该文件时出错。请检查文件格式然后重试。"
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr "保存工作流时出错。"
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr "这些是 {brandName} 支持运行命令的模块。"
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr "这些是支持的标准运行命令运行的详细程度。"
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr "这些参数与指定的模块一起使用。"
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr "这些参数与指定的模块一起使用。点击可以找到有关 {0} 的信息。"
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr "第三"
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr "此项目需要被更新"
@@ -8460,15 +8766,15 @@ msgstr "此操作将从 {0} 中解除以下角色关联:"
msgid "This action will disassociate the following:"
msgstr "此操作将解除以下关联:"
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:111
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在此容器组中。确定要删除它吗?"
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在使用此凭证。确定要删除它吗?"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr "一些凭证目前正在使用此凭证类型,无法删除"
@@ -8476,8 +8782,15 @@ msgstr "一些凭证目前正在使用此凭证类型,无法删除"
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
-msgstr "这些数据用于增强以后的软件发行版本,并提供 Insights for Ansible Automation Platform。"
+"Automation Analytics."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr "这些数据用于增强以后的软件发行版本,并提供 Insights for Ansible Automation Platform。"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
@@ -8486,7 +8799,7 @@ msgid ""
"streamline customer experience and success."
msgstr "这些数据用于增强未来的 Tower 软件发行版本,并帮助简化客户体验和成功。"
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在使用此执行环境。确定要删除它吗?"
@@ -8495,17 +8808,17 @@ msgstr "其他资源目前正在使用此执行环境。确定要删除它吗?
msgid "This feature is deprecated and will be removed in a future release."
msgstr "这个功能已被弃用并将在以后的发行版本中被删除。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr "此字段不能为空"
+#~ msgid "This field is must not be blank"
+#~ msgstr "此字段不能为空"
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr "此字段不能为空"
+#~ msgid "This field is must not be blank."
+#~ msgstr "此字段不能为空"
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8536,7 +8849,7 @@ msgstr "此字段必须是一个数字,且值需要小于 {max}"
msgid "This field must be a regular expression"
msgstr "此字段必须是正则表达式"
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr "此字段必须是整数。"
@@ -8549,12 +8862,13 @@ msgstr "此字段必须至少为 {0} 个字符"
msgid "This field must be at least {min} characters"
msgstr "此字段必须至少为 {min} 个字符"
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr "此字段必须大于 0"
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8562,6 +8876,10 @@ msgstr "此字段必须大于 0"
msgid "This field must not be blank"
msgstr "此字段不能为空"
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr "此字段不得包含空格"
@@ -8578,7 +8896,7 @@ msgstr "此字段不能超过 {max} 个字符"
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr "此字段将使用指定的凭证从外部 secret 管理系统检索。"
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在此实例组中。确定要删除它吗?"
@@ -8586,15 +8904,15 @@ msgstr "其他资源目前正在此实例组中。确定要删除它吗?"
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr "此清单会应用到在这个工作流 ({0}) 中的所有作业模板,它会提示输入一个清单。"
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在使用此清单。确定要删除它吗?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
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.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr "这是唯一显示客户端 secret 的时间。"
@@ -8602,19 +8920,19 @@ msgstr "这是唯一显示客户端 secret 的时间。"
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr "这是唯一显示令牌值和关联刷新令牌值的时间。"
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在使用此任务模板。确定要删除它吗?"
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr "这个机构目前由其他资源使用。您确定要删除它吗?"
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "其他资源目前正在使用这个项目。确定要删除它吗?"
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr "此项目当前处于同步状态,在同步过程完成前无法点击"
@@ -8634,6 +8952,18 @@ msgstr "这一步包含错误"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "此值与之前输入的密码不匹配。请确认该密码。"
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8644,27 +8974,27 @@ msgstr "这会将此页中的所有配置值重置为其工厂默认值。确定
msgid "This workflow does not have any nodes configured."
msgstr "此工作流没有配置任何节点。"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
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.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr "周四"
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr "周四"
-#: screens/ActivityStream/ActivityStream.js:243
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr "时间"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8674,7 +9004,7 @@ msgid ""
"performed."
msgstr "将项目视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的项目更新。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8683,24 +9013,24 @@ msgid ""
"inventory sync will be performed."
msgstr "将清单同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的清单同步。"
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr "超时"
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr "超时"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr "超时分钟"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr "超时秒"
@@ -8708,11 +9038,11 @@ msgstr "超时秒"
msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
msgstr "要使用 ansible 事实创建智能清单,请转至智能清单屏幕。"
-#: screens/Template/Survey/SurveyReorderModal.js:191
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr "要重新调整调查问题的顺序,将问题拖放到所需的位置。"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr "切换图例"
@@ -8720,12 +9050,12 @@ msgstr "切换图例"
msgid "Toggle Password"
msgstr "切换密码"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr "切换工具"
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr "切换主机"
@@ -8764,7 +9094,7 @@ msgstr "删除调度"
msgid "Toggle tools"
msgstr "切换工具"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr "令牌"
@@ -8778,11 +9108,11 @@ msgstr "令牌信息"
msgid "Token not found."
msgstr "未找到令牌"
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8793,37 +9123,42 @@ msgid "Tools"
msgstr "工具"
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
-msgstr "顶级分页"
+#~ msgid "Top Pagination"
+#~ msgstr "顶级分页"
#: routeConfig.js:152
#: screens/TopologyView/TopologyView.js:40
msgid "Topology View"
msgstr "拓扑视图"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr "任务总数"
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr "节点总数"
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr "作业总数"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr "跟踪子模块"
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr "跟踪分支中的最新提交"
@@ -8833,23 +9168,23 @@ msgid "Trial"
msgstr "试用"
#: components/JobList/JobListItem.js:318
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:306
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr "True"
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr "周二"
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr "周二"
@@ -8858,13 +9193,13 @@ msgstr "周二"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.js:242
+#: components/JobList/JobList.js:246
#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
-#: components/RelatedTemplateList/RelatedTemplateList.js:172
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
#: components/TemplateList/TemplateList.js:214
@@ -8872,13 +9207,13 @@ msgstr "Twilio"
#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:162
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
@@ -8886,15 +9221,15 @@ msgstr "Twilio"
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
#: screens/Inventory/InventoryList/InventoryList.js:220
#: screens/Inventory/InventoryList/InventoryListItem.js:116
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
#: screens/Project/ProjectList/ProjectList.js:194
#: screens/Project/ProjectList/ProjectList.js:223
-#: screens/Project/ProjectList/ProjectListItem.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
@@ -8910,7 +9245,7 @@ msgstr "类型"
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr "类型详情"
@@ -8928,11 +9263,15 @@ msgstr "UTC"
msgid "Unable to change inventory on a host"
msgstr "无法更改主机上的清单。"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:83
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr "不可用"
@@ -8950,7 +9289,7 @@ msgstr "未追随"
msgid "Unlimited"
msgstr "无限"
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8972,28 +9311,28 @@ msgstr "未识别的日字符串"
msgid "Unsaved changes modal"
msgstr "未保存的修改 modal"
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr "启动时更新修订"
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr "启动时更新"
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr "更新项目时更新"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr "更新选项"
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr "启动作业时更新修订"
@@ -9001,7 +9340,7 @@ msgstr "启动作业时更新修订"
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr "更新 {brandName} 中与作业相关的设置"
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr "轮转 Webhook 密钥"
@@ -9018,12 +9357,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr "上传一个包含了您的订阅的 Red Hat Subscription Manifest。要生成订阅清单,请访问红帽用户门户网站中的 <0>subscription allocations0>。"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr "使用 SSL"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr "使用 TLS"
@@ -9034,21 +9373,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr "当一个作业开始、成功或失败时使用的自定义消息来更改通知的内容。使用大括号来访问该作业的信息:"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:257
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr "已使用容量"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:82
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr "使用的容量"
@@ -9087,34 +9447,39 @@ msgstr "用户分析"
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
-msgstr "用户和 Insights 分析"
+msgid "User and Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr "用户和 Insights 分析"
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr "用户详情"
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr "未找到用户。"
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr "用户令牌"
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:127
-#: components/ResourceAccessList/ResourceAccessList.js:180
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9129,11 +9494,11 @@ msgstr "用户名"
msgid "Username / password"
msgstr "用户名/密码"
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
#: routeConfig.js:101
-#: screens/ActivityStream/ActivityStream.js:178
-#: screens/Team/Teams.js:29
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9145,35 +9510,44 @@ msgstr "用户"
msgid "VMware vCenter"
msgstr "VMware vCenter"
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:124
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:95
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:444
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr "变量"
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr "提示变量"
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr "Vault 密码"
@@ -9182,21 +9556,21 @@ msgstr "Vault 密码"
msgid "Vault password | {credId}"
msgstr "Vault 密码 | {credId}"
-#: screens/Job/JobOutput/JobOutputSearch.js:129
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr "详细"
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:265
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr "详细程度"
@@ -9208,8 +9582,8 @@ msgstr "版本"
msgid "View Azure AD settings"
msgstr "查看 Azure AD 设置"
-#: screens/Credential/Credential.js:142
-#: screens/Credential/Credential.js:154
+#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr "查看凭证详情"
@@ -9225,15 +9599,15 @@ msgstr "查看 GitHub 设置"
msgid "View Google OAuth 2.0 settings"
msgstr "查看 Google OAuth 2.0 设置"
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr "查看主机详情"
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr "查看实例详情"
-#: screens/Inventory/Inventory.js:191
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
@@ -9247,11 +9621,11 @@ msgstr "查看清单组"
msgid "View Inventory Host Details"
msgstr "查看清单主机详情"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr "在 <0>www.json.org0> 查看 JSON 示例"
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr "查看作业详情"
@@ -9275,11 +9649,11 @@ msgstr "查看其他身份验证设置"
msgid "View Miscellaneous System settings"
msgstr "查看杂项系统设置"
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr "查看机构详情"
-#: screens/Project/Project.js:194
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr "查看项目详情"
@@ -9300,8 +9674,8 @@ msgstr "查看调度"
msgid "View Settings"
msgstr "查看设置"
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr "查看问卷调查"
@@ -9309,12 +9683,12 @@ msgstr "查看问卷调查"
msgid "View TACACS+ settings"
msgstr "查看 TACACS+ 设置"
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr "查看团队详情"
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr "查看模板详情"
@@ -9322,7 +9696,7 @@ msgstr "查看模板详情"
msgid "View Tokens"
msgstr "查看令牌"
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr "查看用户详情"
@@ -9330,11 +9704,11 @@ msgstr "查看用户详情"
msgid "View User Interface settings"
msgstr "查看用户界面设置"
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr "查看工作流批准详情"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr "在 <0>docs.ansible.com0> 查看 YAML 示例"
@@ -9343,15 +9717,15 @@ msgstr "在 <0>docs.ansible.com0> 查看 YAML 示例"
msgid "View activity stream"
msgstr "查看活动流"
-#: screens/Credential/Credential.js:98
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr "查看所有凭证。"
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr "查看所有主机。"
-#: screens/Inventory/Inventory.js:94
+#: screens/Inventory/Inventory.js:95
#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr "查看所有清单。"
@@ -9364,7 +9738,7 @@ msgstr "查看所有清单主机。"
msgid "View all Jobs"
msgstr "查看所有作业"
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr "查看所有作业"
@@ -9373,24 +9747,24 @@ msgstr "查看所有作业"
msgid "View all Notification Templates."
msgstr "查看所有通知模板。"
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr "查看所有机构。"
-#: screens/Project/Project.js:136
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr "查看所有项目。"
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr "查看所有团队。"
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr "查看所有模板。"
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr "查看所有用户。"
@@ -9398,24 +9772,24 @@ msgstr "查看所有用户。"
msgid "View all Workflow Approvals."
msgstr "查看所有工作流批准。"
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr "查看所有应用程序。"
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr "查看所有凭证类型"
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr "查看所有执行环境"
#: screens/InstanceGroup/ContainerGroup.js:86
-#: screens/InstanceGroup/InstanceGroup.js:93
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr "查看所有实例组"
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr "查看所有管理作业"
@@ -9453,13 +9827,13 @@ msgid "View smart inventory host details"
msgstr "查看智能清单主机详情"
#: routeConfig.js:30
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr "视图"
-#: components/TemplateList/TemplateListItem.js:189
-#: components/TemplateList/TemplateListItem.js:195
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr "Visualizer"
@@ -9467,8 +9841,8 @@ msgstr "Visualizer"
msgid "WARNING:"
msgstr "警告:"
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr "等待"
@@ -9478,7 +9852,7 @@ msgid "Waiting for job output…"
msgstr "等待作业输出…"
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:131
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr "警告"
@@ -9500,80 +9874,90 @@ msgstr "我们无法找到与这个帐户关联的许可证。"
msgid "Webhook"
msgstr "Webhook"
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr "Webhook 凭证"
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr "Webhook 凭证"
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr "Webhook 密钥"
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr "Webhook 服务"
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr "Webhook 详情"
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr "Webhook 服务可通过向此 URL 发出 POST 请求来使用此工作流作业模板启动作业。"
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr "Webhook 服务可以将此用作共享机密。"
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr "Webhook"
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr "周三"
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr "周三"
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr "周"
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr "周中日"
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr "周末日"
@@ -9583,18 +9967,18 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr "欢迎使用 Red Hat Ansible Automation Platform!请完成以下步骤以激活订阅。"
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr "欢迎使用 {brandName}!"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr "如果没有选中,就会执行合并,将本地变量与外部源上的变量合并。"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9614,28 +9998,29 @@ msgid "Workflow Approval not found."
msgstr "未找到工作流批准。"
#: routeConfig.js:54
-#: screens/ActivityStream/ActivityStream.js:150
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr "工作流批准"
-#: components/JobList/JobList.js:212
+#: components/JobList/JobList.js:216
#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:75
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr "工作流作业"
#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:135
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr "工作流作业模板"
@@ -9659,22 +10044,22 @@ msgstr "工作流链接"
msgid "Workflow Template"
msgstr "工作流模板"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr "工作流批准的消息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr "工作流批准的消息正文"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr "工作流拒绝的消息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr "工作流拒绝的消息正文"
@@ -9684,6 +10069,10 @@ msgstr "工作流拒绝的消息正文"
msgid "Workflow documentation"
msgstr "工作流文档"
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr "工作流作业模板"
@@ -9696,49 +10085,49 @@ msgstr "工作流链接 modal"
msgid "Workflow node view modal"
msgstr "工作流节点查看 modal"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr "工作流待处理信息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr "工作流待处理信息正文"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr "工作流超时信息"
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr "工作流超时信息正文"
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr "写入"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr "YAML:"
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr "年"
-#: components/Search/Search.js:218
+#: components/Search/Search.js:229
msgid "Yes"
msgstr "是"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr "您无法对以下工作流批准进行操作: {itemsUnableToApprove}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr "您无法对以下工作流批准进行操作: {itemsUnableToApprove}"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr "您无法对以下工作流批准进行操作: {itemsUnableToDeny}"
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr "您无法对以下工作流批准进行操作: {itemsUnableToDeny}"
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9752,7 +10141,7 @@ msgstr "您没有权限删除以下组: {itemsUnableToDelete}"
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "您没有权限删除 {pluralizedItemName}:{itemsUnableToDelete}"
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "您没有权限取消关联: {itemsUnableToDisassociate}"
@@ -9762,7 +10151,7 @@ msgid ""
"message. For more information, refer to the"
msgstr "您可以在消息中应用多个可能的变量。如需更多信息,请参阅"
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr "您的会话已过期。请登录以继续使用会话过期前所在的位置。"
@@ -9788,18 +10177,18 @@ msgstr "放大"
msgid "Zoom out"
msgstr "缩小"
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr "在保存时会生成一个新的 WEBHOOK 密钥"
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr "在保存时会生成一个新的 WEBHOOK url"
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr "点 Update Revision on Launch"
@@ -9820,7 +10209,7 @@ msgstr "取消删除"
msgid "cancel edit login redirect"
msgstr "取消编辑登录重定向"
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr "命令"
@@ -9855,38 +10244,38 @@ msgid "disassociate"
msgstr "解除关联"
#: components/Lookup/HostFilterLookup.js:405
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr "文档"
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:105
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
msgstr "编辑"
#: screens/Template/Survey/SurveyListItem.js:65
-#: screens/Template/Survey/SurveyReorderModal.js:122
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr "加密"
#: components/Lookup/HostFilterLookup.js:407
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr "更多信息。"
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr "更多信息"
@@ -9894,15 +10283,24 @@ msgstr "更多信息"
msgid "h"
msgstr "h"
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr "此处"
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr "此处。"
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr "主机"
@@ -9919,7 +10317,7 @@ msgstr "LDAP 用户"
msgid "login type"
msgstr "登录类型"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr "分钟"
@@ -9932,11 +10330,11 @@ msgid "node"
msgstr "节点"
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr "的"
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr "选项"
@@ -9957,21 +10355,21 @@ msgstr "按页面"
msgid "relaunch jobs"
msgstr "重新启动作业"
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr "秒"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr "秒"
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr "选择模块"
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr "选择详细程度"
+#~ msgid "select verbosity"
+#~ msgstr "选择详细程度"
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -9981,8 +10379,8 @@ msgstr "自"
msgid "social login"
msgstr "社交登录"
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr "源控制分支"
@@ -9994,7 +10392,7 @@ msgstr "系统"
msgid "timed out"
msgstr "超时"
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr "切换更改"
@@ -10002,7 +10400,7 @@ msgstr "切换更改"
msgid "updated"
msgstr "已更新"
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr "工作流作业模板 webhook 密钥"
@@ -10026,15 +10424,15 @@ msgstr "{0, plural, one {Please enter a valid phone number.} other {Please enter
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
-#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
@@ -10054,7 +10452,7 @@ msgstr "{0, plural, one {This instance group is currently being by other resourc
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
@@ -10066,8 +10464,8 @@ msgstr "{0, plural, one {This organization is currently being used by other reso
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
-#: components/RelatedTemplateList/RelatedTemplateList.js:194
-#: components/TemplateList/TemplateList.js:265
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
@@ -10095,38 +10493,38 @@ msgstr "{brandName} 标志"
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr}(按 <0>{username}0>)"
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr "{forks, plural, one {# fork} other {# forks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr "{intervalValue, plural, one {day} other {days}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr "{intervalValue, plural, one {hour} other {hours}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr "{intervalValue, plural, one {minute} other {minutes}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr "{intervalValue, plural, one {month} other {months}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr "{intervalValue, plural, one {week} other {weeks}}"
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr "{intervalValue, plural, one {year} other {years}}"
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} 分 {seconds} 秒"
@@ -10152,4 +10550,4 @@ msgstr "{selectedItemsCount, plural, one {Click to run a health check on the sel
#: components/AppContainer/AppContainer.js:154
msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
-msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
+msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}"
diff --git a/awx/ui/src/locales/zu/messages.po b/awx/ui/src/locales/zu/messages.po
index 294d21b074..5e77f8312e 100644
--- a/awx/ui/src/locales/zu/messages.po
+++ b/awx/ui/src/locales/zu/messages.po
@@ -17,95 +17,63 @@ msgstr ""
msgid "(Limited to first 10)"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:98
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:161
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89
+#: components/TemplateList/TemplateListItem.js:103
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:154
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:90
msgid "(Prompt on launch)"
msgstr ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:274
+#: screens/Credential/CredentialDetail/CredentialDetail.js:284
msgid "* This field will be retrieved from an external secret management system using the specified credential."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
msgid "/ (project root)"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:30
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:134
-#: components/PromptDetail/PromptDetail.js:97
-#: components/PromptDetail/PromptInventorySourceDetail.js:36
-#: components/PromptDetail/PromptJobTemplateDetail.js:46
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:105
-#: screens/Template/shared/JobTemplateForm.js:210
+#: components/VerbositySelectField/VerbositySelectField.js:13
+#: constants.js:19
msgid "0 (Normal)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:109
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:34
msgid "0 (Warning)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:110
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
msgid "1 (Info)"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:31
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:135
-#: components/PromptDetail/PromptDetail.js:98
-#: components/PromptDetail/PromptInventorySourceDetail.js:37
-#: components/PromptDetail/PromptJobTemplateDetail.js:47
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106
-#: screens/Template/shared/JobTemplateForm.js:211
+#: components/VerbositySelectField/VerbositySelectField.js:14
+#: constants.js:20
msgid "1 (Verbose)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:111
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:36
msgid "2 (Debug)"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:32
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:136
-#: components/PromptDetail/PromptDetail.js:99
-#: components/PromptDetail/PromptInventorySourceDetail.js:38
-#: components/PromptDetail/PromptJobTemplateDetail.js:48
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107
-#: screens/Template/shared/JobTemplateForm.js:212
+#: components/VerbositySelectField/VerbositySelectField.js:15
+#: constants.js:21
msgid "2 (More Verbose)"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:33
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:137
-#: components/PromptDetail/PromptDetail.js:100
-#: components/PromptDetail/PromptInventorySourceDetail.js:39
-#: components/PromptDetail/PromptJobTemplateDetail.js:49
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108
-#: screens/Template/shared/JobTemplateForm.js:213
+#: components/VerbositySelectField/VerbositySelectField.js:16
+#: constants.js:22
msgid "3 (Debug)"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:34
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:138
-#: components/PromptDetail/PromptDetail.js:101
-#: components/PromptDetail/PromptInventorySourceDetail.js:40
-#: components/PromptDetail/PromptJobTemplateDetail.js:50
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109
-#: screens/Template/shared/JobTemplateForm.js:214
+#: components/VerbositySelectField/VerbositySelectField.js:17
+#: constants.js:23
msgid "4 (Connection Debug)"
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110
+#: components/VerbositySelectField/VerbositySelectField.js:18
+#: constants.js:24
msgid "5 (WinRM Debug)"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56
+#: screens/Project/shared/Project.helptext.js:76
msgid ""
"A refspec to fetch (passed to the Ansible git\n"
"module). This parameter allows access to references via\n"
@@ -121,15 +89,15 @@ msgstr ""
msgid "ALL"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
msgid "API Service/Integration Key"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:282
msgid "API Token"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:304
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:297
msgid "API service/integration key"
msgstr ""
@@ -137,22 +105,22 @@ msgstr ""
msgid "About"
msgstr ""
-#: routeConfig.js:91
-#: screens/ActivityStream/ActivityStream.js:171
-#: screens/Credential/Credential.js:72
-#: screens/Credential/Credentials.js:28
-#: screens/Inventory/Inventories.js:58
-#: screens/Inventory/Inventory.js:63
-#: screens/Inventory/SmartInventory.js:66
-#: screens/Organization/Organization.js:123
+#: routeConfig.js:92
+#: screens/ActivityStream/ActivityStream.js:179
+#: screens/Credential/Credential.js:74
+#: screens/Credential/Credentials.js:29
+#: screens/Inventory/Inventories.js:59
+#: screens/Inventory/Inventory.js:65
+#: screens/Inventory/SmartInventory.js:67
+#: screens/Organization/Organization.js:124
#: screens/Organization/Organizations.js:31
-#: screens/Project/Project.js:104
-#: screens/Project/Projects.js:29
-#: screens/Team/Team.js:57
-#: screens/Team/Teams.js:30
-#: screens/Template/Template.js:135
-#: screens/Template/Templates.js:44
-#: screens/Template/WorkflowJobTemplate.js:117
+#: screens/Project/Project.js:105
+#: screens/Project/Projects.js:27
+#: screens/Team/Team.js:58
+#: screens/Team/Teams.js:31
+#: screens/Template/Template.js:136
+#: screens/Template/Templates.js:45
+#: screens/Template/WorkflowJobTemplate.js:118
msgid "Access"
msgstr ""
@@ -160,12 +128,12 @@ msgstr ""
msgid "Access Token Expiration"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:338
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:425
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408
msgid "Account SID"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
msgid "Account token"
msgstr ""
@@ -173,58 +141,58 @@ msgstr ""
msgid "Action"
msgstr ""
-#: components/JobList/JobList.js:245
-#: components/JobList/JobListItem.js:96
+#: components/JobList/JobList.js:249
+#: components/JobList/JobListItem.js:103
+#: components/RelatedTemplateList/RelatedTemplateList.js:189
#: components/Schedule/ScheduleList/ScheduleList.js:171
#: components/Schedule/ScheduleList/ScheduleListItem.js:114
-#: components/TemplateList/TemplateList.js:230
-#: components/TemplateList/TemplateListItem.js:181
-#: screens/ActivityStream/ActivityStream.js:258
+#: components/SelectedList/DraggableSelectedList.js:101
+#: components/TemplateList/TemplateList.js:246
+#: components/TemplateList/TemplateListItem.js:195
+#: screens/ActivityStream/ActivityStream.js:266
#: screens/ActivityStream/ActivityStreamListItem.js:49
#: screens/Application/ApplicationsList/ApplicationListItem.js:48
#: screens/Application/ApplicationsList/ApplicationsList.js:160
-#: screens/Credential/CredentialList/CredentialList.js:147
-#: screens/Credential/CredentialList/CredentialListItem.js:63
+#: screens/Credential/CredentialList/CredentialList.js:166
+#: screens/Credential/CredentialList/CredentialListItem.js:66
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:177
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:38
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:154
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:79
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:168
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:87
#: screens/Host/HostGroups/HostGroupItem.js:34
#: screens/Host/HostGroups/HostGroupsList.js:177
-#: screens/Host/HostList/HostList.js:163
-#: screens/Host/HostList/HostListItem.js:64
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290
+#: screens/Host/HostList/HostList.js:172
+#: screens/Host/HostList/HostListItem.js:70
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:214
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75
-#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/InstanceGroup/Instances/InstanceList.js:260
#: screens/InstanceGroup/Instances/InstanceListItem.js:171
#: screens/Instances/InstanceList/InstanceList.js:155
#: screens/Instances/InstanceList/InstanceListItem.js:183
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:52
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:218
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:53
#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:142
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:187
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
-#: screens/Inventory/InventoryList/InventoryList.js:207
-#: screens/Inventory/InventoryList/InventoryListItem.js:127
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:44
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:140
+#: screens/Inventory/InventoryList/InventoryList.js:222
+#: screens/Inventory/InventoryList/InventoryListItem.js:131
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:233
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:44
-#: screens/Inventory/InventorySources/InventorySourceList.js:215
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:99
+#: screens/Inventory/InventorySources/InventorySourceList.js:214
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:102
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:196
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:181
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:124
#: screens/Organization/OrganizationList/OrganizationList.js:146
#: screens/Organization/OrganizationList/OrganizationListItem.js:69
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:159
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82
-#: screens/Project/ProjectList/ProjectList.js:211
-#: screens/Project/ProjectList/ProjectListItem.js:209
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:19
+#: screens/Project/ProjectList/ProjectList.js:225
+#: screens/Project/ProjectList/ProjectListItem.js:222
#: screens/Team/TeamList/TeamList.js:144
#: screens/Team/TeamList/TeamListItem.js:47
#: screens/Template/Survey/SurveyList.js:105
@@ -235,31 +203,32 @@ msgstr ""
msgid "Actions"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:105
+#: components/PromptDetail/PromptJobTemplateDetail.js:98
#: components/PromptDetail/PromptWFJobTemplateDetail.js:61
-#: components/TemplateList/TemplateListItem.js:263
+#: components/TemplateList/TemplateListItem.js:277
#: screens/Host/HostDetail/HostDetail.js:71
-#: screens/Host/HostList/HostListItem.js:89
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+#: screens/Host/HostList/HostListItem.js:95
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:217
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:50
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:77
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:33
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:115
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116
msgid "Activity"
msgstr ""
-#: routeConfig.js:48
-#: screens/ActivityStream/ActivityStream.js:111
+#: routeConfig.js:49
+#: screens/ActivityStream/ActivityStream.js:43
+#: screens/ActivityStream/ActivityStream.js:121
#: screens/Setting/Settings.js:43
msgid "Activity Stream"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:114
+#: screens/ActivityStream/ActivityStream.js:124
msgid "Activity Stream type selector"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:107
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210
msgid "Actor"
msgstr ""
@@ -276,19 +245,19 @@ msgstr ""
msgid "Add Node"
msgstr ""
-#: screens/Template/Templates.js:48
+#: screens/Template/Templates.js:49
msgid "Add Question"
msgstr ""
-#: components/AddRole/AddResourceRole.js:183
+#: components/AddRole/AddResourceRole.js:164
msgid "Add Roles"
msgstr ""
-#: components/AddRole/AddResourceRole.js:180
+#: components/AddRole/AddResourceRole.js:161
msgid "Add Team Roles"
msgstr ""
-#: components/AddRole/AddResourceRole.js:177
+#: components/AddRole/AddResourceRole.js:158
msgid "Add User Roles"
msgstr ""
@@ -301,7 +270,7 @@ msgstr ""
msgid "Add a new node between these two nodes"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:183
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:113
msgid "Add container group"
msgstr ""
@@ -313,15 +282,15 @@ msgstr ""
msgid "Add existing host"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:114
msgid "Add instance group"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:122
+#: screens/Inventory/InventoryList/InventoryList.js:136
msgid "Add inventory"
msgstr ""
-#: components/TemplateList/TemplateList.js:136
+#: components/TemplateList/TemplateList.js:151
msgid "Add job template"
msgstr ""
@@ -333,11 +302,11 @@ msgstr ""
msgid "Add new host"
msgstr ""
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:60
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:77
msgid "Add resource type"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:123
+#: screens/Inventory/InventoryList/InventoryList.js:137
msgid "Add smart inventory"
msgstr ""
@@ -349,29 +318,30 @@ msgstr ""
msgid "Add user permissions"
msgstr ""
-#: components/TemplateList/TemplateList.js:137
+#: components/TemplateList/TemplateList.js:152
msgid "Add workflow template"
msgstr ""
-#: routeConfig.js:112
-#: screens/ActivityStream/ActivityStream.js:182
+#: routeConfig.js:113
+#: screens/ActivityStream/ActivityStream.js:190
msgid "Administration"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:136
-#: screens/Job/JobOutput/JobOutputSearch.js:133
+#: components/DataListToolbar/DataListToolbar.js:139
+#: screens/Job/JobOutput/JobOutputSearch.js:137
msgid "Advanced"
msgstr ""
-#: components/Search/AdvancedSearch.js:240
+#: components/Search/AdvancedSearch.js:318
msgid "Advanced search documentation"
msgstr ""
-#: components/Search/AdvancedSearch.js:222
+#: components/Search/AdvancedSearch.js:211
+#: components/Search/AdvancedSearch.js:225
msgid "Advanced search value input"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196
+#: screens/Inventory/shared/Inventory.helptext.js:131
msgid ""
"After every project update where the SCM revision\n"
"changes, refresh the inventory from the selected source\n"
@@ -379,7 +349,7 @@ msgid ""
"like the Ansible inventory .ini file format."
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:514
+#: components/Schedule/shared/FrequencyDetailSubform.js:517
msgid "After number of occurrences"
msgstr ""
@@ -388,10 +358,10 @@ msgid "Alert modal"
msgstr ""
#: components/LaunchButton/ReLaunchDropDown.js:48
-#: components/PromptDetail/PromptDetail.js:130
+#: components/PromptDetail/PromptDetail.js:123
#: screens/Metrics/Metrics.js:82
#: screens/Metrics/Metrics.js:82
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
msgid "All"
msgstr ""
@@ -403,29 +373,29 @@ msgstr ""
msgid "All jobs"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:103
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:97
msgid "Allow Branch Override"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:66
-#: screens/Project/ProjectDetail/ProjectDetail.js:107
+#: screens/Project/ProjectDetail/ProjectDetail.js:120
msgid "Allow branch override"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:104
+#: screens/Project/shared/Project.helptext.js:122
msgid ""
"Allow changing the Source Control branch or revision in a job\n"
"template that uses this project."
msgstr ""
-#: screens/Application/shared/ApplicationForm.js:116
+#: screens/Application/shared/Application.helptext.js:6
msgid "Allowed URIs list, space separated"
msgstr ""
#: components/Workflow/WorkflowLegend.js:130
#: components/Workflow/WorkflowLinkHelp.js:24
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:46
msgid "Always"
msgstr ""
@@ -453,27 +423,27 @@ msgstr ""
msgid "Answer type"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/Survey/SurveyQuestionForm.js:177
msgid "Answer variable name"
msgstr ""
-#: components/PromptDetail/PromptDetail.js:130
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:254
+#: components/PromptDetail/PromptDetail.js:123
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:263
msgid "Any"
msgstr ""
#: components/Lookup/ApplicationLookup.js:83
-#: screens/User/UserTokenDetail/UserTokenDetail.js:37
-#: screens/User/shared/UserTokenForm.js:47
+#: screens/User/UserTokenDetail/UserTokenDetail.js:38
+#: screens/User/shared/UserTokenForm.js:48
msgid "Application"
msgstr ""
-#: screens/User/UserTokenList/UserTokenList.js:183
+#: screens/User/UserTokenList/UserTokenList.js:187
msgid "Application Name"
msgstr ""
-#: screens/Application/Applications.js:64
#: screens/Application/Applications.js:67
+#: screens/Application/Applications.js:70
msgid "Application information"
msgstr ""
@@ -482,57 +452,58 @@ msgstr ""
msgid "Application name"
msgstr ""
-#: screens/Application/Application/Application.js:94
+#: screens/Application/Application/Application.js:95
msgid "Application not found."
msgstr ""
#: components/Lookup/ApplicationLookup.js:95
-#: routeConfig.js:141
-#: screens/Application/Applications.js:25
-#: screens/Application/Applications.js:34
+#: routeConfig.js:142
+#: screens/Application/Applications.js:26
+#: screens/Application/Applications.js:35
#: screens/Application/ApplicationsList/ApplicationsList.js:113
#: screens/Application/ApplicationsList/ApplicationsList.js:148
#: util/getRelatedResourceDeleteDetails.js:208
msgid "Applications"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:203
+#: screens/ActivityStream/ActivityStream.js:211
msgid "Applications & Tokens"
msgstr ""
#: components/NotificationList/NotificationListItem.js:39
#: components/NotificationList/NotificationListItem.js:40
#: components/Workflow/WorkflowLegend.js:114
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:81
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:67
msgid "Approval"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:176
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:99
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:106
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:130
msgid "Approve"
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:115
+msgid "Approve, cancel or deny"
+msgstr ""
+
+#: components/StatusLabel/StatusLabel.js:31
msgid "Approved"
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:11
msgid "Approved - {0}. See the Activity Stream for more information."
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:7
msgid "Approved by {0} - {1}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:125
+#: components/Schedule/shared/FrequencyDetailSubform.js:128
msgid "April"
msgstr ""
-#: components/JobCancelButton/JobCancelButton.js:86
+#: components/JobCancelButton/JobCancelButton.js:89
msgid "Are you sure you want to cancel this job?"
msgstr ""
@@ -576,20 +547,20 @@ msgstr ""
msgid "Are you sure you want to remove {0} access from {username}?"
msgstr ""
-#: screens/Job/JobOutput/JobOutput.js:781
+#: screens/Job/JobOutput/JobOutput.js:771
msgid "Are you sure you want to submit the request to cancel this job?"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:101
-#: components/AdHocCommands/AdHocDetailsStep.js:103
+#: components/AdHocCommands/AdHocDetailsStep.js:102
+#: components/AdHocCommands/AdHocDetailsStep.js:104
msgid "Arguments"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:451
+#: screens/Job/JobDetail/JobDetail.js:541
msgid "Artifacts"
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:223
+#: screens/InstanceGroup/Instances/InstanceList.js:222
#: screens/User/UserTeams/UserTeamList.js:208
msgid "Associate"
msgstr ""
@@ -607,7 +578,7 @@ msgstr ""
msgid "At least one value must be selected for this field."
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:145
+#: components/Schedule/shared/FrequencyDetailSubform.js:148
msgid "August"
msgstr ""
@@ -619,18 +590,27 @@ msgstr ""
msgid "Authorization Code Expiration"
msgstr ""
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:79
-#: screens/Application/shared/ApplicationForm.js:83
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:80
+#: screens/Application/shared/ApplicationForm.js:84
msgid "Authorization grant type"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
msgid "Auto"
msgstr ""
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
+msgid "Automation Analytics"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
+msgid "Automation Analytics dashboard"
+msgstr ""
+
#: screens/Setting/Settings.js:46
msgid "Azure AD"
msgstr ""
@@ -639,8 +619,8 @@ msgstr ""
msgid "Azure AD settings"
msgstr ""
-#: components/AdHocCommands/AdHocCommandsWizard.js:52
-#: components/AddRole/AddResourceRole.js:286
+#: components/AdHocCommands/AdHocCommandsWizard.js:50
+#: components/AddRole/AddResourceRole.js:267
#: components/LaunchPrompt/LaunchPrompt.js:128
#: components/Schedule/shared/SchedulePromptableFields.js:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90
@@ -650,7 +630,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: screens/Credential/Credential.js:64
+#: screens/Credential/Credential.js:65
msgid "Back to Credentials"
msgstr ""
@@ -669,17 +649,17 @@ msgstr ""
msgid "Back to Hosts"
msgstr ""
-#: screens/InstanceGroup/InstanceGroup.js:74
+#: screens/InstanceGroup/InstanceGroup.js:61
msgid "Back to Instance Groups"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:167
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:171
#: screens/Instances/Instance.js:18
msgid "Back to Instances"
msgstr ""
-#: screens/Inventory/Inventory.js:56
-#: screens/Inventory/SmartInventory.js:59
+#: screens/Inventory/Inventory.js:57
+#: screens/Inventory/SmartInventory.js:60
msgid "Back to Inventories"
msgstr ""
@@ -756,7 +736,7 @@ msgstr ""
msgid "Back to execution environments"
msgstr ""
-#: screens/InstanceGroup/ContainerGroup.js:68
+#: screens/InstanceGroup/ContainerGroup.js:59
msgid "Back to instance groups"
msgstr ""
@@ -764,7 +744,7 @@ msgstr ""
msgid "Back to management jobs"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:66
+#: screens/Project/shared/Project.helptext.js:8
msgid ""
"Base path used for locating playbooks. Directories\n"
"found inside this path will be listed in the playbook directory drop-down.\n"
@@ -772,11 +752,11 @@ msgid ""
"path used to locate playbooks."
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:450
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:433
msgid "Basic auth password"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:30
+#: screens/Project/shared/Project.helptext.js:104
msgid ""
"Branch to checkout. In addition to branches,\n"
"you can input tags, commit hashes, and arbitrary refs. Some\n"
@@ -792,39 +772,47 @@ msgstr ""
msgid "Browse"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:94
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:115
msgid "Browse…"
msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
-msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
+#~ msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36
+msgid "By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature."
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:217
+#: screens/TopologyView/Legend.js:74
+msgid "C"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:221
#: screens/InstanceGroup/Instances/InstanceListItem.js:145
-#: screens/Instances/InstanceDetail/InstanceDetail.js:167
+#: screens/Instances/InstanceDetail/InstanceDetail.js:171
#: screens/Instances/InstanceList/InstanceListItem.js:155
msgid "CPU {0}"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:136
-#: screens/Project/ProjectDetail/ProjectDetail.js:216
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:121
+#: screens/Project/ProjectDetail/ProjectDetail.js:250
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
msgid "Cache Timeout"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:234
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:252
msgid "Cache timeout"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:114
msgid "Cache timeout (seconds)"
msgstr ""
-#: components/AdHocCommands/AdHocCommandsWizard.js:53
-#: components/AddRole/AddResourceRole.js:287
+#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AddRole/AddResourceRole.js:268
#: components/AssociateModal/AssociateModal.js:114
#: components/AssociateModal/AssociateModal.js:119
#: components/DeleteButton/DeleteButton.js:120
@@ -834,12 +822,14 @@ msgstr ""
#: components/FormActionGroup/FormActionGroup.js:23
#: components/FormActionGroup/FormActionGroup.js:29
#: components/LaunchPrompt/LaunchPrompt.js:129
-#: components/Lookup/HostFilterLookup.js:361
-#: components/Lookup/Lookup.js:202
+#: components/Lookup/HostFilterLookup.js:387
+#: components/Lookup/Lookup.js:203
#: components/PaginatedTable/ToolbarDeleteButton.js:282
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:37
-#: components/Schedule/shared/ScheduleForm.js:646
-#: components/Schedule/shared/ScheduleForm.js:651
+#: components/Schedule/shared/ScheduleForm.js:462
+#: components/Schedule/shared/ScheduleForm.js:467
+#: components/Schedule/shared/ScheduleForm.js:678
+#: components/Schedule/shared/ScheduleForm.js:683
#: components/Schedule/shared/SchedulePromptableFields.js:133
#: screens/Credential/shared/CredentialForm.js:343
#: screens/Credential/shared/CredentialForm.js:348
@@ -849,8 +839,8 @@ msgstr ""
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:101
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:107
#: screens/Setting/shared/RevertAllAlert.js:32
#: screens/Setting/shared/RevertFormActionGroup.js:31
#: screens/Setting/shared/RevertFormActionGroup.js:37
@@ -860,7 +850,7 @@ msgstr ""
#: screens/Team/TeamRoles/TeamRolesList.js:228
#: screens/Team/TeamRoles/TeamRolesList.js:231
#: screens/Template/Survey/SurveyList.js:78
-#: screens/Template/Survey/SurveyReorderModal.js:201
+#: screens/Template/Survey/SurveyReorderModal.js:211
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45
@@ -869,32 +859,34 @@ msgstr ""
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165
#: screens/User/UserRoles/UserRolesList.js:224
#: screens/User/UserRoles/UserRolesList.js:227
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:84
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:92
msgid "Cancel"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:284
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:316
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:112
msgid "Cancel Inventory Source Sync"
msgstr ""
-#: components/JobCancelButton/JobCancelButton.js:52
-#: screens/Job/JobOutput/JobOutput.js:757
-#: screens/Job/JobOutput/JobOutput.js:758
+#: components/JobCancelButton/JobCancelButton.js:55
+#: screens/Job/JobOutput/JobOutput.js:747
+#: screens/Job/JobOutput/JobOutput.js:748
msgid "Cancel Job"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:260
-#: screens/Project/ProjectList/ProjectListItem.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:303
+#: screens/Project/ProjectList/ProjectListItem.js:230
msgid "Cancel Project Sync"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:286
-#: screens/Project/ProjectDetail/ProjectDetail.js:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:318
+#: screens/Project/ProjectDetail/ProjectDetail.js:305
msgid "Cancel Sync"
msgstr ""
-#: screens/Job/JobOutput/JobOutput.js:765
-#: screens/Job/JobOutput/JobOutput.js:768
+#: screens/Job/JobOutput/JobOutput.js:755
+#: screens/Job/JobOutput/JobOutput.js:758
msgid "Cancel job"
msgstr ""
@@ -906,7 +898,7 @@ msgstr ""
msgid "Cancel link removal"
msgstr ""
-#: components/Lookup/Lookup.js:200
+#: components/Lookup/Lookup.js:201
msgid "Cancel lookup"
msgstr ""
@@ -931,20 +923,24 @@ msgstr ""
msgid "Cancel subscription edit"
msgstr ""
-#: components/JobList/JobListItem.js:106
-#: screens/Job/JobDetail/JobDetail.js:492
+#: components/JobList/JobListItem.js:113
+#: screens/Job/JobDetail/JobDetail.js:582
#: screens/Job/JobOutput/shared/OutputToolbar.js:137
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:89
msgid "Cancel {0}"
msgstr ""
-#: components/JobList/JobList.js:230
-#: components/StatusLabel/StatusLabel.js:40
+#: components/JobList/JobList.js:234
+#: components/StatusLabel/StatusLabel.js:46
#: components/Workflow/WorkflowNodeHelp.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:163
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:253
msgid "Canceled"
msgstr ""
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:58
+msgid "Cannot approve, cancel or deny completed workflow approvals"
+msgstr ""
+
#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129
msgid ""
"Cannot enable log aggregator without providing\n"
@@ -955,15 +951,15 @@ msgstr ""
msgid "Cannot run health check on hop nodes."
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:213
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74
msgid "Capacity"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:214
-#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:218
+#: screens/InstanceGroup/Instances/InstanceList.js:258
#: screens/InstanceGroup/Instances/InstanceListItem.js:143
-#: screens/Instances/InstanceDetail/InstanceDetail.js:164
+#: screens/Instances/InstanceDetail/InstanceDetail.js:168
#: screens/Instances/InstanceList/InstanceList.js:153
#: screens/Instances/InstanceList/InstanceListItem.js:153
msgid "Capacity Adjustment"
@@ -989,13 +985,13 @@ msgstr ""
msgid "Case-insensitive version of startswith."
msgstr ""
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:72
+#: screens/Project/shared/Project.helptext.js:14
msgid ""
"Change PROJECTS_ROOT when deploying\n"
"{brandName} to change this location."
msgstr ""
-#: components/StatusLabel/StatusLabel.js:41
+#: components/StatusLabel/StatusLabel.js:47
#: screens/Job/JobOutput/shared/HostStatusBar.js:43
msgid "Changed"
msgstr ""
@@ -1004,13 +1000,13 @@ msgstr ""
msgid "Changes"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:264
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257
msgid "Channel"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:102
-#: screens/Template/shared/JobTemplateForm.js:205
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:103
+#: screens/Template/shared/JobTemplateForm.js:214
msgid "Check"
msgstr ""
@@ -1034,20 +1030,20 @@ msgstr ""
msgid "Choose a Playbook Directory"
msgstr ""
-#: screens/Project/shared/ProjectForm.js:223
+#: screens/Project/shared/ProjectForm.js:224
msgid "Choose a Source Control Type"
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:98
+#: screens/Template/shared/WebhookSubForm.js:99
msgid "Choose a Webhook Service"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:95
-#: screens/Template/shared/JobTemplateForm.js:198
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:96
+#: screens/Template/shared/JobTemplateForm.js:207
msgid "Choose a job type"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:81
+#: components/AdHocCommands/AdHocDetailsStep.js:82
msgid "Choose a module"
msgstr ""
@@ -1055,7 +1051,7 @@ msgstr ""
msgid "Choose a source"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:493
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:475
msgid "Choose an HTTP method"
msgstr ""
@@ -1074,21 +1070,21 @@ msgstr ""
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.js:193
+#: components/AddRole/AddResourceRole.js:174
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 ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:69
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
msgid "Clean"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:95
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:116
msgid "Clear"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:94
-#: screens/Job/JobOutput/JobOutputSearch.js:142
+#: components/DataListToolbar/DataListToolbar.js:95
+#: screens/Job/JobOutput/JobOutputSearch.js:145
msgid "Clear all filters"
msgstr ""
@@ -1100,10 +1096,14 @@ msgstr ""
msgid "Clear subscription selection"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:232
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:245
msgid "Click an available node to create a new link. Click outside the graph to cancel."
msgstr ""
+#: screens/TopologyView/Tooltip.js:60
+msgid "Click on a node icon to display the details."
+msgstr ""
+
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:134
msgid "Click the Edit button below to reconfigure the node."
msgstr ""
@@ -1124,29 +1124,29 @@ msgstr ""
msgid "Click to toggle default value"
msgstr ""
-#: components/Workflow/WorkflowNodeHelp.js:198
+#: components/Workflow/WorkflowNodeHelp.js:202
msgid "Click to view job details"
msgstr ""
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:86
-#: screens/Application/Applications.js:81
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:88
+#: screens/Application/Applications.js:84
msgid "Client ID"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:279
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:284
msgid "Client Identifier"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:312
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:305
msgid "Client identifier"
msgstr ""
-#: screens/Application/Applications.js:94
+#: screens/Application/Applications.js:97
msgid "Client secret"
msgstr ""
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:96
-#: screens/Application/shared/ApplicationForm.js:125
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:99
+#: screens/Application/shared/ApplicationForm.js:126
msgid "Client type"
msgstr ""
@@ -1155,7 +1155,7 @@ msgstr ""
msgid "Close"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:122
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123
msgid "Close subscription modal"
msgstr ""
@@ -1175,24 +1175,36 @@ msgstr ""
msgid "Collapse section"
msgstr ""
-#: components/JobList/JobList.js:210
-#: components/JobList/JobListItem.js:39
-#: screens/Job/JobOutput/HostEventModal.js:126
+#: components/JobList/JobList.js:214
+#: components/JobList/JobListItem.js:45
+#: screens/Job/JobOutput/HostEventModal.js:129
msgid "Command"
msgstr ""
+#: components/Schedule/shared/ScheduleForm.js:453
+msgid "Complex schedules are not supported in the UI yet, please use the API to manage this schedule."
+msgstr ""
+
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49
msgid "Compliant"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:75
+#: components/PromptDetail/PromptJobTemplateDetail.js:68
#: components/PromptDetail/PromptWFJobTemplateDetail.js:36
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:137
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57
-#: screens/Template/shared/JobTemplateForm.js:603
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:130
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:58
+#: screens/Template/shared/JobTemplateForm.js:539
msgid "Concurrent Jobs"
msgstr ""
+#: screens/Template/shared/JobTemplate.helptext.js:35
+msgid "Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:23
+msgid "Concurrent jobs: If enabled, simultaneous runs of this workflow job template will be allowed."
+msgstr ""
+
#: screens/Setting/shared/SharedFields.js:121
#: screens/Setting/shared/SharedFields.js:127
#: screens/Setting/shared/SharedFields.js:336
@@ -1212,11 +1224,11 @@ msgstr ""
msgid "Confirm Password"
msgstr ""
-#: components/JobCancelButton/JobCancelButton.js:68
+#: components/JobCancelButton/JobCancelButton.js:71
msgid "Confirm cancel job"
msgstr ""
-#: components/JobCancelButton/JobCancelButton.js:72
+#: components/JobCancelButton/JobCancelButton.js:75
msgid "Confirm cancellation"
msgstr ""
@@ -1244,21 +1256,21 @@ msgstr ""
msgid "Confirm revert all"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:91
msgid "Confirm selection"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:285
+#: screens/Job/JobDetail/JobDetail.js:361
msgid "Container Group"
msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:63
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:57
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68
msgid "Container group"
msgstr ""
-#: screens/InstanceGroup/ContainerGroup.js:93
+#: screens/InstanceGroup/ContainerGroup.js:84
msgid "Container group not found."
msgstr ""
@@ -1271,36 +1283,49 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:197
+#: screens/InstanceGroup/Instances/InstanceList.js:196
#: screens/Instances/InstanceList/InstanceList.js:116
msgid "Control"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90
+#: screens/TopologyView/Legend.js:77
+msgid "Control node"
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:79
msgid ""
"Control the level of output Ansible\n"
"will produce for inventory source update jobs."
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:150
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:139
msgid ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:464
-msgid ""
-"Control the level of output ansible will\n"
-"produce as the playbook executes."
+#~ msgid ""
+#~ "Control the level of output ansible will\n"
+#~ "produce as the playbook executes."
+#~ msgstr ""
+
+#: screens/Job/Job.helptext.js:14
+#: screens/Template/shared/JobTemplate.helptext.js:15
+msgid "Control the level of output ansible will produce as the playbook executes."
msgstr ""
-#: components/PromptDetail/PromptDetail.js:128
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:216
+#: screens/Job/JobDetail/JobDetail.js:346
+msgid "Controller Node"
+msgstr ""
+
+#: components/PromptDetail/PromptDetail.js:121
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:225
msgid "Convergence"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:247
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:248
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:256
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:257
msgid "Convergence select"
msgstr ""
@@ -1308,7 +1333,7 @@ msgstr ""
msgid "Copy"
msgstr ""
-#: screens/Credential/CredentialList/CredentialListItem.js:77
+#: screens/Credential/CredentialList/CredentialListItem.js:80
msgid "Copy Credential"
msgstr ""
@@ -1316,11 +1341,11 @@ msgstr ""
msgid "Copy Error"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:96
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:104
msgid "Copy Execution Environment"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:150
+#: screens/Inventory/InventoryList/InventoryListItem.js:154
msgid "Copy Inventory"
msgstr ""
@@ -1328,16 +1353,16 @@ msgstr ""
msgid "Copy Notification Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:249
+#: screens/Project/ProjectList/ProjectListItem.js:262
msgid "Copy Project"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:234
+#: components/TemplateList/TemplateListItem.js:248
msgid "Copy Template"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:183
-#: screens/Project/ProjectList/ProjectListItem.js:94
+#: screens/Project/ProjectDetail/ProjectDetail.js:201
+#: screens/Project/ProjectList/ProjectListItem.js:98
msgid "Copy full revision to clipboard."
msgstr ""
@@ -1345,32 +1370,35 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:405
-#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: components/MultiSelect/TagMultiSelect.js:62
+#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:66
+#: screens/Inventory/shared/InventoryForm.js:83
+#: screens/Template/shared/JobTemplateForm.js:387
+#: screens/Template/shared/WorkflowJobTemplateForm.js:197
msgid "Create"
msgstr ""
-#: screens/Application/Applications.js:26
-#: screens/Application/Applications.js:35
+#: screens/Application/Applications.js:27
+#: screens/Application/Applications.js:36
msgid "Create New Application"
msgstr ""
-#: screens/Credential/Credentials.js:14
-#: screens/Credential/Credentials.js:24
+#: screens/Credential/Credentials.js:15
+#: screens/Credential/Credentials.js:25
msgid "Create New Credential"
msgstr ""
-#: screens/Host/Hosts.js:16
-#: screens/Host/Hosts.js:25
+#: screens/Host/Hosts.js:15
+#: screens/Host/Hosts.js:24
msgid "Create New Host"
msgstr ""
-#: screens/Template/Templates.js:17
+#: screens/Template/Templates.js:18
msgid "Create New Job Template"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplates.js:14
-#: screens/NotificationTemplate/NotificationTemplates.js:21
+#: screens/NotificationTemplate/NotificationTemplates.js:15
+#: screens/NotificationTemplate/NotificationTemplates.js:22
msgid "Create New Notification Template"
msgstr ""
@@ -1379,20 +1407,20 @@ msgstr ""
msgid "Create New Organization"
msgstr ""
-#: screens/Project/Projects.js:15
-#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:13
+#: screens/Project/Projects.js:23
msgid "Create New Project"
msgstr ""
-#: screens/Inventory/Inventories.js:89
-#: screens/ManagementJob/ManagementJobs.js:25
-#: screens/Project/Projects.js:34
-#: screens/Template/Templates.js:51
+#: screens/Inventory/Inventories.js:91
+#: screens/ManagementJob/ManagementJobs.js:24
+#: screens/Project/Projects.js:32
+#: screens/Template/Templates.js:52
msgid "Create New Schedule"
msgstr ""
-#: screens/Team/Teams.js:15
-#: screens/Team/Teams.js:25
+#: screens/Team/Teams.js:16
+#: screens/Team/Teams.js:26
msgid "Create New Team"
msgstr ""
@@ -1401,16 +1429,16 @@ msgstr ""
msgid "Create New User"
msgstr ""
-#: screens/Template/Templates.js:18
+#: screens/Template/Templates.js:19
msgid "Create New Workflow Template"
msgstr ""
-#: screens/Host/HostList/SmartInventoryButton.js:18
+#: screens/Host/HostList/SmartInventoryButton.js:26
msgid "Create a new Smart Inventory with the applied filter"
msgstr ""
-#: screens/InstanceGroup/InstanceGroups.js:39
-#: screens/InstanceGroup/InstanceGroups.js:49
+#: screens/InstanceGroup/InstanceGroups.js:47
+#: screens/InstanceGroup/InstanceGroups.js:57
msgid "Create new container group"
msgstr ""
@@ -1427,30 +1455,30 @@ msgstr ""
msgid "Create new execution environment"
msgstr ""
-#: screens/Inventory/Inventories.js:73
-#: screens/Inventory/Inventories.js:80
+#: screens/Inventory/Inventories.js:75
+#: screens/Inventory/Inventories.js:82
msgid "Create new group"
msgstr ""
-#: screens/Inventory/Inventories.js:64
-#: screens/Inventory/Inventories.js:78
+#: screens/Inventory/Inventories.js:66
+#: screens/Inventory/Inventories.js:80
msgid "Create new host"
msgstr ""
-#: screens/InstanceGroup/InstanceGroups.js:38
-#: screens/InstanceGroup/InstanceGroups.js:48
+#: screens/InstanceGroup/InstanceGroups.js:46
+#: screens/InstanceGroup/InstanceGroups.js:56
msgid "Create new instance group"
msgstr ""
-#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/Inventories.js:18
msgid "Create new inventory"
msgstr ""
-#: screens/Inventory/Inventories.js:18
+#: screens/Inventory/Inventories.js:19
msgid "Create new smart inventory"
msgstr ""
-#: screens/Inventory/Inventories.js:83
+#: screens/Inventory/Inventories.js:85
msgid "Create new source"
msgstr ""
@@ -1459,39 +1487,39 @@ msgid "Create user token"
msgstr ""
#: components/Lookup/ApplicationLookup.js:114
-#: components/PromptDetail/PromptDetail.js:152
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:277
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:100
-#: screens/Credential/CredentialDetail/CredentialDetail.js:247
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:99
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:137
-#: screens/Host/HostDetail/HostDetail.js:83
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:66
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:95
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:112
+#: components/PromptDetail/PromptDetail.js:145
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:104
+#: screens/Credential/CredentialDetail/CredentialDetail.js:257
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:102
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
+#: screens/Host/HostDetail/HostDetail.js:84
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:93
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:134
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:293
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47
-#: screens/Job/JobDetail/JobDetail.js:427
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:105
-#: screens/Project/ProjectDetail/ProjectDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:516
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:388
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:115
+#: screens/Project/ProjectDetail/ProjectDetail.js:274
#: screens/Team/TeamDetail/TeamDetail.js:47
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:327
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:173
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
#: screens/User/UserDetail/UserDetail.js:82
-#: screens/User/UserTokenDetail/UserTokenDetail.js:57
-#: screens/User/UserTokenList/UserTokenList.js:146
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:150
+#: screens/User/UserTokenDetail/UserTokenDetail.js:60
+#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:240
msgid "Created"
msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:122
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:112
-#: components/AddRole/AddResourceRole.js:56
+#: components/AddRole/AddResourceRole.js:57
#: components/AssociateModal/AssociateModal.js:144
#: components/LaunchPrompt/steps/CredentialsStep.js:173
#: components/LaunchPrompt/steps/InventoryStep.js:89
@@ -1502,30 +1530,30 @@ msgstr ""
#: components/Lookup/OrganizationLookup.js:133
#: components/Lookup/ProjectLookup.js:150
#: components/NotificationList/NotificationList.js:206
+#: components/RelatedTemplateList/RelatedTemplateList.js:166
#: components/Schedule/ScheduleList/ScheduleList.js:197
-#: components/TemplateList/TemplateList.js:211
+#: components/TemplateList/TemplateList.js:226
#: 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.js:135
+#: screens/Credential/CredentialList/CredentialList.js:150
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:96
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:132
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:102
#: screens/Host/HostGroups/HostGroupsList.js:164
-#: screens/Host/HostList/HostList.js:149
+#: screens/Host/HostList/HostList.js:157
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:174
#: screens/Inventory/InventoryHosts/InventoryHostList.js:128
-#: screens/Inventory/InventoryList/InventoryList.js:184
+#: screens/Inventory/InventoryList/InventoryList.js:199
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:185
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:94
#: screens/Organization/OrganizationList/OrganizationList.js:131
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:127
-#: screens/Project/ProjectList/ProjectList.js:199
+#: screens/Project/ProjectList/ProjectList.js:213
#: screens/Team/TeamList/TeamList.js:130
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:163
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:112
@@ -1533,30 +1561,29 @@ msgstr ""
msgid "Created By (Username)"
msgstr ""
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:73
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:81
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:147
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:73
msgid "Created by (username)"
msgstr ""
-#: components/AdHocCommands/AdHocPreviewStep.js:52
+#: components/AdHocCommands/AdHocPreviewStep.js:54
#: components/AdHocCommands/useAdHocCredentialStep.js:24
-#: components/PromptDetail/PromptInventorySourceDetail.js:126
+#: components/PromptDetail/PromptInventorySourceDetail.js:119
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:89
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:52
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:53
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:243
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:42
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:79
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:41
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:41
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:50
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:83
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:35
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:37
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:37
#: util/getRelatedResourceDeleteDetails.js:166
msgid "Credential"
msgstr ""
@@ -1569,14 +1596,15 @@ msgstr ""
msgid "Credential Name"
msgstr ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:231
+#: screens/Credential/CredentialDetail/CredentialDetail.js:241
+#: screens/Credential/CredentialList/CredentialList.js:158
#: screens/Credential/shared/CredentialForm.js:128
#: screens/Credential/shared/CredentialForm.js:196
msgid "Credential Type"
msgstr ""
-#: routeConfig.js:116
-#: screens/ActivityStream/ActivityStream.js:184
+#: routeConfig.js:117
+#: screens/ActivityStream/ActivityStream.js:192
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:118
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:161
#: screens/CredentialType/CredentialTypes.js:13
@@ -1584,7 +1612,11 @@ msgstr ""
msgid "Credential Types"
msgstr ""
-#: screens/Credential/Credential.js:91
+#: screens/Credential/CredentialList/CredentialList.js:113
+msgid "Credential copied successfully"
+msgstr ""
+
+#: screens/Credential/Credential.js:98
msgid "Credential not found."
msgstr ""
@@ -1593,37 +1625,41 @@ msgstr ""
msgid "Credential passwords"
msgstr ""
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:60
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53
+msgid "Credential to authenticate with Kubernetes or OpenShift"
+msgstr ""
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:57
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.js:163
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:21
msgid "Credential to authenticate with a protected container registry."
msgstr ""
-#: screens/CredentialType/CredentialType.js:75
+#: screens/CredentialType/CredentialType.js:76
msgid "Credential type not found."
msgstr ""
-#: components/JobList/JobListItem.js:241
+#: components/JobList/JobListItem.js:260
#: components/LaunchPrompt/steps/CredentialsStep.js:190
#: components/LaunchPrompt/steps/useCredentialsStep.js:62
#: components/Lookup/MultiCredentialsLookup.js:138
#: components/Lookup/MultiCredentialsLookup.js:210
-#: components/PromptDetail/PromptDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:193
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:331
-#: components/TemplateList/TemplateListItem.js:321
+#: components/PromptDetail/PromptDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:186
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
+#: components/TemplateList/TemplateListItem.js:322
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
-#: routeConfig.js:69
-#: screens/ActivityStream/ActivityStream.js:159
-#: screens/Credential/CredentialList/CredentialList.js:175
-#: screens/Credential/Credentials.js:13
-#: screens/Credential/Credentials.js:23
-#: screens/Job/JobDetail/JobDetail.js:329
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:347
+#: routeConfig.js:70
+#: screens/ActivityStream/ActivityStream.js:167
+#: screens/Credential/CredentialList/CredentialList.js:195
+#: screens/Credential/Credentials.js:14
+#: screens/Credential/Credentials.js:24
+#: screens/Job/JobDetail/JobDetail.js:414
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:360
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:51
-#: screens/Template/shared/JobTemplateForm.js:373
+#: screens/Template/shared/JobTemplateForm.js:365
#: util/getRelatedResourceDeleteDetails.js:90
msgid "Credentials"
msgstr ""
@@ -1636,22 +1672,25 @@ msgstr ""
msgid "Current page"
msgstr ""
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:82
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:85
+msgid "Custom Kubernetes or OpenShift Pod specification."
+msgstr ""
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
msgid "Custom pod spec"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:77
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:79
#: screens/Organization/OrganizationList/OrganizationListItem.js:55
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:69
-#: screens/Project/ProjectList/ProjectListItem.js:183
+#: screens/Project/ProjectList/ProjectListItem.js:188
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
-#: components/TemplateList/TemplateListItem.js:158
+#: components/TemplateList/TemplateListItem.js:163
msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr ""
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:72
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:73
msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.0>"
msgstr ""
@@ -1659,8 +1698,8 @@ msgstr ""
msgid "Customize messages…"
msgstr ""
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:68
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:69
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:65
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:66
msgid "Customize pod specification"
msgstr ""
@@ -1669,12 +1708,12 @@ msgstr ""
msgid "DELETED"
msgstr ""
-#: routeConfig.js:33
+#: routeConfig.js:34
#: screens/Dashboard/Dashboard.js:74
msgid "Dashboard"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:139
+#: screens/ActivityStream/ActivityStream.js:147
msgid "Dashboard (all activity)"
msgstr ""
@@ -1686,14 +1725,14 @@ msgstr ""
msgid "Date"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:346
-#: components/Schedule/shared/FrequencyDetailSubform.js:450
-#: components/Schedule/shared/ScheduleForm.js:154
+#: components/Schedule/shared/FrequencyDetailSubform.js:349
+#: components/Schedule/shared/FrequencyDetailSubform.js:453
+#: components/Schedule/shared/ScheduleForm.js:156
msgid "Day"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:273
-#: components/Schedule/shared/ScheduleForm.js:165
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/shared/ScheduleForm.js:167
msgid "Days of Data to Keep"
msgstr ""
@@ -1709,11 +1748,11 @@ msgstr ""
msgid "Days to keep"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:125
+#: screens/Job/JobOutput/JobOutputSearch.js:103
msgid "Debug"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:165
+#: components/Schedule/shared/FrequencyDetailSubform.js:168
msgid "December"
msgstr ""
@@ -1724,9 +1763,9 @@ msgstr ""
msgid "Default"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:209
-#: screens/Template/Survey/SurveyReorderModal.js:209
-#: screens/Template/Survey/SurveyReorderModal.js:231
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:219
+#: screens/Template/Survey/SurveyReorderModal.js:241
msgid "Default Answer(s)"
msgstr ""
@@ -1734,9 +1773,9 @@ msgstr ""
msgid "Default Execution Environment"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:232
-#: screens/Template/Survey/SurveyQuestionForm.js:240
-#: screens/Template/Survey/SurveyQuestionForm.js:247
+#: screens/Template/Survey/SurveyQuestionForm.js:238
+#: screens/Template/Survey/SurveyQuestionForm.js:246
+#: screens/Template/Survey/SurveyQuestionForm.js:253
msgid "Default answer"
msgstr ""
@@ -1755,35 +1794,35 @@ msgstr ""
#: components/PaginatedTable/ToolbarDeleteButton.js:250
#: components/PaginatedTable/ToolbarDeleteButton.js:273
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:29
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:426
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
-#: screens/Credential/CredentialDetail/CredentialDetail.js:297
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:130
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:130
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:140
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:419
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:127
+#: screens/Credential/CredentialDetail/CredentialDetail.js:307
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:124
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:115
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:127
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:162
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:101
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:176
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:68
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:73
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:78
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102
-#: screens/Job/JobDetail/JobDetail.js:504
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:420
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:188
-#: screens/Project/ProjectDetail/ProjectDetail.js:279
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:75
+#: screens/Job/JobDetail/JobDetail.js:594
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:431
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:199
+#: screens/Project/ProjectDetail/ProjectDetail.js:322
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
#: screens/Team/TeamDetail/TeamDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:509
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:528
#: screens/Template/Survey/SurveyList.js:66
#: screens/Template/Survey/SurveyToolbar.js:93
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:249
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:271
#: screens/User/UserDetail/UserDetail.js:107
-#: screens/User/UserTokenDetail/UserTokenDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/User/UserTokenDetail/UserTokenDetail.js:77
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:365
msgid "Delete"
msgstr ""
@@ -1791,42 +1830,42 @@ msgstr ""
msgid "Delete All Groups and Hosts"
msgstr ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:291
+#: screens/Credential/CredentialDetail/CredentialDetail.js:301
msgid "Delete Credential"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:123
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126
msgid "Delete Execution Environment"
msgstr ""
-#: screens/Host/HostDetail/HostDetail.js:111
+#: screens/Host/HostDetail/HostDetail.js:112
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:110
msgid "Delete Host"
msgstr ""
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:135
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:157
msgid "Delete Inventory"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:500
+#: screens/Job/JobDetail/JobDetail.js:590
#: screens/Job/JobOutput/shared/OutputToolbar.js:195
#: screens/Job/JobOutput/shared/OutputToolbar.js:199
msgid "Delete Job"
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:522
msgid "Delete Job Template"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:416
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:427
msgid "Delete Notification"
msgstr ""
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:193
msgid "Delete Organization"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:273
+#: screens/Project/ProjectDetail/ProjectDetail.js:316
msgid "Delete Project"
msgstr ""
@@ -1834,7 +1873,7 @@ msgstr ""
msgid "Delete Questions"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:422
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:415
msgid "Delete Schedule"
msgstr ""
@@ -1850,15 +1889,15 @@ msgstr ""
msgid "Delete User"
msgstr ""
-#: screens/User/UserTokenDetail/UserTokenDetail.js:70
+#: screens/User/UserTokenDetail/UserTokenDetail.js:73
msgid "Delete User Token"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:199
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:361
msgid "Delete Workflow Approval"
msgstr ""
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:265
msgid "Delete Workflow Job Template"
msgstr ""
@@ -1867,28 +1906,28 @@ msgstr ""
msgid "Delete all nodes"
msgstr ""
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:119
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:123
msgid "Delete application"
msgstr ""
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:116
msgid "Delete credential type"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:250
+#: screens/Inventory/InventorySources/InventorySourceList.js:249
msgid "Delete error"
msgstr ""
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:109
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:121
msgid "Delete instance group"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:294
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:326
msgid "Delete inventory source"
msgstr ""
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:172
msgid "Delete smart inventory"
msgstr ""
@@ -1896,7 +1935,7 @@ msgstr ""
msgid "Delete survey question"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:76
+#: screens/Project/shared/Project.helptext.js:110
msgid ""
"Delete the local repository in its entirety prior to\n"
"performing an update. Depending on the size of the\n"
@@ -1905,7 +1944,7 @@ msgid ""
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:51
-#: screens/Project/ProjectDetail/ProjectDetail.js:92
+#: screens/Project/ProjectDetail/ProjectDetail.js:99
msgid "Delete the project before syncing"
msgstr ""
@@ -1921,181 +1960,191 @@ msgstr ""
msgid "Delete {pluralizedItemName}?"
msgstr ""
-#: components/DetailList/DeletedDetail.js:15
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:131
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72
+#: components/DetailList/DeletedDetail.js:19
+#: components/Workflow/WorkflowNodeHelp.js:157
+#: components/Workflow/WorkflowNodeHelp.js:193
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:272
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:40
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:51
msgid "Deleted"
msgstr ""
-#: components/TemplateList/TemplateList.js:278
-#: screens/Credential/CredentialList/CredentialList.js:191
-#: screens/Inventory/InventoryList/InventoryList.js:268
-#: screens/Project/ProjectList/ProjectList.js:274
+#: components/TemplateList/TemplateList.js:296
+#: screens/Credential/CredentialList/CredentialList.js:211
+#: screens/Inventory/InventoryList/InventoryList.js:284
+#: screens/Project/ProjectList/ProjectList.js:290
msgid "Deletion Error"
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:202
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:212
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:309
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:227
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:233
msgid "Deletion error"
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38
+#: components/StatusLabel/StatusLabel.js:32
msgid "Denied"
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:21
msgid "Denied - {0}. See the Activity Stream for more information."
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:17
msgid "Denied by {0} - {1}"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:185
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:190
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:31
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:47
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:55
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:59
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:72
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:80
msgid "Deny"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:127
+#: screens/Job/JobOutput/JobOutputSearch.js:104
msgid "Deprecated"
msgstr ""
#: components/HostForm/HostForm.js:104
#: components/Lookup/ApplicationLookup.js:104
#: components/Lookup/ApplicationLookup.js:122
+#: components/Lookup/HostFilterLookup.js:422
+#: components/Lookup/HostListItem.js:9
#: components/NotificationList/NotificationList.js:186
-#: components/PromptDetail/PromptDetail.js:117
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:260
+#: components/PromptDetail/PromptDetail.js:110
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253
#: components/Schedule/ScheduleList/ScheduleList.js:193
-#: components/Schedule/shared/ScheduleForm.js:113
-#: components/TemplateList/TemplateList.js:195
-#: components/TemplateList/TemplateListItem.js:257
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:63
+#: components/Schedule/shared/ScheduleForm.js:115
+#: components/TemplateList/TemplateList.js:210
+#: components/TemplateList/TemplateListItem.js:271
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:64
#: screens/Application/ApplicationsList/ApplicationsList.js:123
-#: screens/Application/shared/ApplicationForm.js:60
-#: screens/Credential/CredentialDetail/CredentialDetail.js:213
-#: screens/Credential/CredentialList/CredentialList.js:131
+#: screens/Application/shared/ApplicationForm.js:61
+#: screens/Credential/CredentialDetail/CredentialDetail.js:223
+#: screens/Credential/CredentialList/CredentialList.js:146
#: screens/Credential/shared/CredentialForm.js:169
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:72
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:128
#: screens/CredentialType/shared/CredentialTypeForm.js:29
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:145
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:140
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:59
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:126
#: screens/Host/HostDetail/HostDetail.js:73
-#: screens/Host/HostList/HostList.js:145
+#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:170
+#: screens/Host/HostList/HostListItem.js:57
#: screens/Inventory/InventoryDetail/InventoryDetail.js:71
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:216
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:81
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:40
#: screens/Inventory/InventoryHosts/InventoryHostList.js:124
-#: screens/Inventory/InventoryList/InventoryList.js:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:200
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:139
+#: screens/Inventory/InventoryList/InventoryList.js:195
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:213
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:37
-#: screens/Inventory/shared/InventoryForm.js:40
+#: screens/Inventory/shared/InventoryForm.js:50
#: screens/Inventory/shared/InventoryGroupForm.js:40
#: screens/Inventory/shared/InventorySourceForm.js:109
#: screens/Inventory/shared/SmartInventoryForm.js:55
+#: screens/Job/JobOutput/HostEventModal.js:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:101
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:108
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:127
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:95
#: screens/Organization/OrganizationList/OrganizationList.js:127
#: screens/Organization/shared/OrganizationForm.js:64
-#: screens/Project/ProjectDetail/ProjectDetail.js:158
-#: screens/Project/ProjectList/ProjectList.js:176
-#: screens/Project/ProjectList/ProjectListItem.js:268
-#: screens/Project/shared/ProjectForm.js:177
+#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectList/ProjectList.js:190
+#: screens/Project/ProjectList/ProjectListItem.js:281
+#: screens/Project/shared/ProjectForm.js:178
#: screens/Team/TeamDetail/TeamDetail.js:38
#: screens/Team/TeamList/TeamList.js:122
#: screens/Team/shared/TeamForm.js:37
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:187
-#: screens/Template/Survey/SurveyQuestionForm.js:165
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:174
-#: screens/Template/shared/JobTemplateForm.js:245
-#: screens/Template/shared/WorkflowJobTemplateForm.js:111
-#: screens/User/UserOrganizations/UserOrganizationList.js:81
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:180
+#: screens/Template/Survey/SurveyQuestionForm.js:171
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183
+#: screens/Template/shared/JobTemplateForm.js:247
+#: screens/Template/shared/WorkflowJobTemplateForm.js:112
+#: screens/User/UserOrganizations/UserOrganizationList.js:80
#: screens/User/UserOrganizations/UserOrganizationListItem.js:18
#: screens/User/UserTeams/UserTeamList.js:182
#: screens/User/UserTeams/UserTeamListItem.js:32
-#: screens/User/UserTokenDetail/UserTokenDetail.js:42
+#: screens/User/UserTokenDetail/UserTokenDetail.js:44
#: screens/User/UserTokenList/UserTokenList.js:128
-#: screens/User/shared/UserTokenForm.js:60
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:81
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:175
+#: screens/User/UserTokenList/UserTokenList.js:138
+#: screens/User/UserTokenList/UserTokenList.js:188
+#: screens/User/UserTokenList/UserTokenListItem.js:29
+#: screens/User/shared/UserTokenForm.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:186
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:205
msgid "Description"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:320
msgid "Destination Channels"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:224
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:228
msgid "Destination Channels or Users"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:333
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:341
msgid "Destination SMS Number(s)"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:415
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:399
msgid "Destination SMS number(s)"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:360
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:353
msgid "Destination channels"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:227
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:222
msgid "Destination channels or users"
msgstr ""
-#: components/AdHocCommands/useAdHocDetailsStep.js:39
-#: components/ErrorDetail/ErrorDetail.js:75
+#: components/AdHocCommands/useAdHocDetailsStep.js:35
+#: components/ErrorDetail/ErrorDetail.js:80
#: components/Schedule/Schedule.js:71
-#: screens/Application/Application/Application.js:78
-#: screens/Application/Applications.js:38
-#: screens/Credential/Credential.js:70
-#: screens/Credential/Credentials.js:27
-#: screens/CredentialType/CredentialType.js:62
+#: screens/Application/Application/Application.js:79
+#: screens/Application/Applications.js:39
+#: screens/Credential/Credential.js:72
+#: screens/Credential/Credentials.js:28
+#: screens/CredentialType/CredentialType.js:63
#: screens/CredentialType/CredentialTypes.js:26
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:65
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26
-#: screens/Host/Host.js:57
-#: screens/Host/Hosts.js:28
-#: screens/InstanceGroup/ContainerGroup.js:75
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:174
-#: screens/InstanceGroup/InstanceGroup.js:81
-#: screens/InstanceGroup/InstanceGroups.js:51
+#: screens/Host/Host.js:58
+#: screens/Host/Hosts.js:27
+#: screens/InstanceGroup/ContainerGroup.js:66
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:178
+#: screens/InstanceGroup/InstanceGroup.js:69
#: screens/InstanceGroup/InstanceGroups.js:59
-#: screens/Instances/Instance.js:24
-#: screens/Instances/Instances.js:21
-#: screens/Inventory/Inventories.js:60
-#: screens/Inventory/Inventories.js:85
-#: screens/Inventory/Inventory.js:62
+#: screens/InstanceGroup/InstanceGroups.js:67
+#: screens/Instances/Instance.js:25
+#: screens/Instances/Instances.js:22
+#: screens/Inventory/Inventories.js:61
+#: screens/Inventory/Inventories.js:87
+#: screens/Inventory/Inventory.js:64
#: screens/Inventory/InventoryGroup/InventoryGroup.js:57
#: screens/Inventory/InventoryHost/InventoryHost.js:73
#: screens/Inventory/InventorySource/InventorySource.js:83
-#: screens/Inventory/SmartInventory.js:65
+#: screens/Inventory/SmartInventory.js:66
#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:60
-#: screens/Job/Job.js:116
-#: screens/Job/JobOutput/HostEventModal.js:106
-#: screens/Job/Jobs.js:34
-#: screens/ManagementJob/ManagementJobs.js:27
-#: screens/NotificationTemplate/NotificationTemplate.js:83
-#: screens/NotificationTemplate/NotificationTemplates.js:24
-#: screens/Organization/Organization.js:122
+#: screens/Job/Job.js:117
+#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/Jobs.js:35
+#: screens/ManagementJob/ManagementJobs.js:26
+#: screens/NotificationTemplate/NotificationTemplate.js:84
+#: screens/NotificationTemplate/NotificationTemplates.js:25
+#: screens/Organization/Organization.js:123
#: screens/Organization/Organizations.js:30
-#: screens/Project/Project.js:103
-#: screens/Project/Projects.js:28
+#: screens/Project/Project.js:104
+#: screens/Project/Projects.js:26
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:51
#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:51
#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:65
@@ -2130,50 +2179,53 @@ msgstr ""
#: screens/Setting/Settings.js:115
#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:56
#: screens/Setting/UI/UIDetail/UIDetail.js:66
-#: screens/Team/Team.js:56
-#: screens/Team/Teams.js:28
-#: screens/Template/Template.js:134
-#: screens/Template/Templates.js:42
-#: screens/Template/WorkflowJobTemplate.js:116
+#: screens/Team/Team.js:57
+#: screens/Team/Teams.js:29
+#: screens/Template/Template.js:135
+#: screens/Template/Templates.js:43
+#: screens/Template/WorkflowJobTemplate.js:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:140
-#: screens/User/User.js:63
+#: screens/TopologyView/Tooltip.js:56
+#: screens/TopologyView/Tooltip.js:70
+#: screens/User/User.js:64
#: screens/User/UserToken/UserToken.js:54
#: screens/User/Users.js:30
#: screens/User/Users.js:36
-#: screens/WorkflowApproval/WorkflowApproval.js:76
-#: screens/WorkflowApproval/WorkflowApprovals.js:23
+#: screens/WorkflowApproval/WorkflowApproval.js:77
+#: screens/WorkflowApproval/WorkflowApprovals.js:24
msgid "Details"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:103
+#: screens/Job/JobOutput/HostEventModal.js:100
msgid "Details tab"
msgstr ""
-#: components/Search/AdvancedSearch.js:172
+#: components/Search/AdvancedSearch.js:271
msgid "Direct Keys"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:357
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:204
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:263
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:308
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:366
msgid "Disable SSL Verification"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:185
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:238
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:277
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:348
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:446
msgid "Disable SSL verification"
msgstr ""
#: components/InstanceToggle/InstanceToggle.js:56
-#: components/StatusLabel/StatusLabel.js:39
+#: components/StatusLabel/StatusLabel.js:45
+#: screens/TopologyView/Legend.js:133
msgid "Disabled"
msgstr ""
-#: components/DisassociateButton/DisassociateButton.js:69
+#: components/DisassociateButton/DisassociateButton.js:73
#: components/DisassociateButton/DisassociateButton.js:97
#: components/DisassociateButton/DisassociateButton.js:109
#: components/DisassociateButton/DisassociateButton.js:113
@@ -2188,11 +2240,11 @@ msgstr ""
msgid "Disassociate group from host?"
msgstr ""
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:246
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
msgid "Disassociate host from group?"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:282
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:289
#: screens/InstanceGroup/Instances/InstanceList.js:234
msgid "Disassociate instance from instance group?"
msgstr ""
@@ -2220,18 +2272,23 @@ msgid "Disassociate?"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:46
-#: screens/Project/ProjectDetail/ProjectDetail.js:87
+#: screens/Project/ProjectDetail/ProjectDetail.js:93
msgid "Discard local changes before syncing"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:479
-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."
+#~ 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 ""
+
+#: screens/Job/Job.helptext.js:15
+#: screens/Template/shared/JobTemplate.helptext.js:16
+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 ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86
+#: screens/Project/shared/Project.helptext.js:100
msgid "Documentation."
msgstr ""
@@ -2247,71 +2304,71 @@ msgstr ""
msgid "Download Output"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:93
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:114
msgid "Drag a file here or browse to upload"
msgstr ""
#: components/SelectedList/DraggableSelectedList.js:68
-#~ msgid "Draggable list to reorder and remove selected items."
-#~ msgstr ""
+msgid "Draggable list to reorder and remove selected items."
+msgstr ""
#: components/SelectedList/DraggableSelectedList.js:43
-#~ msgid "Dragging cancelled. List is unchanged."
-#~ msgstr ""
+msgid "Dragging cancelled. List is unchanged."
+msgstr ""
#: components/SelectedList/DraggableSelectedList.js:38
-#~ msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
-#~ msgstr ""
+msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}."
+msgstr ""
#: components/SelectedList/DraggableSelectedList.js:32
-#~ msgid "Dragging started for item id: {newId}."
-#~ msgstr ""
+msgid "Dragging started for item id: {newId}."
+msgstr ""
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81
msgid "E-mail"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:124
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:121
msgid "E-mail options"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168
+#: screens/Inventory/shared/Inventory.helptext.js:113
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.js:96
+#: screens/Project/shared/Project.helptext.js:120
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.js:412
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:416
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:110
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:112
-#: screens/Credential/CredentialDetail/CredentialDetail.js:284
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:117
-#: screens/Host/HostDetail/HostDetail.js:105
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:115
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:129
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:405
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:409
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:114
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:116
+#: screens/Credential/CredentialDetail/CredentialDetail.js:294
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120
+#: screens/Host/HostDetail/HostDetail.js:106
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:101
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:113
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:151
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:55
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:62
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:104
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:276
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:125
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:164
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:402
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:404
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:308
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:127
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:166
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:413
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:415
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:138
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:171
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:175
-#: screens/Project/ProjectDetail/ProjectDetail.js:252
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:182
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Project/ProjectDetail/ProjectDetail.js:295
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:85
#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:89
#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:148
@@ -2339,17 +2396,17 @@ msgstr ""
#: screens/Setting/UI/UIDetail/UIDetail.js:110
#: screens/Team/TeamDetail/TeamDetail.js:55
#: screens/Team/TeamDetail/TeamDetail.js:59
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:478
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:480
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:219
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:221
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:497
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:499
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:243
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:241
#: screens/User/UserDetail/UserDetail.js:96
msgid "Edit"
msgstr ""
-#: screens/Credential/CredentialList/CredentialListItem.js:64
-#: screens/Credential/CredentialList/CredentialListItem.js:68
+#: screens/Credential/CredentialList/CredentialListItem.js:67
+#: screens/Credential/CredentialList/CredentialListItem.js:71
msgid "Edit Credential"
msgstr ""
@@ -2358,14 +2415,14 @@ msgstr ""
msgid "Edit Credential Plugin Configuration"
msgstr ""
-#: screens/Application/Applications.js:37
-#: screens/Credential/Credentials.js:26
-#: screens/Host/Hosts.js:27
-#: screens/ManagementJob/ManagementJobs.js:28
-#: screens/NotificationTemplate/NotificationTemplates.js:23
+#: screens/Application/Applications.js:38
+#: screens/Credential/Credentials.js:27
+#: screens/Host/Hosts.js:26
+#: screens/ManagementJob/ManagementJobs.js:27
+#: screens/NotificationTemplate/NotificationTemplates.js:24
#: screens/Organization/Organizations.js:29
-#: screens/Project/Projects.js:27
-#: screens/Project/Projects.js:37
+#: screens/Project/Projects.js:25
+#: screens/Project/Projects.js:35
#: screens/Setting/Settings.js:45
#: screens/Setting/Settings.js:48
#: screens/Setting/Settings.js:52
@@ -2390,14 +2447,14 @@ msgstr ""
#: screens/Setting/Settings.js:110
#: screens/Setting/Settings.js:113
#: screens/Setting/Settings.js:116
-#: screens/Team/Teams.js:27
-#: screens/Template/Templates.js:43
+#: screens/Team/Teams.js:28
+#: screens/Template/Templates.js:44
#: screens/User/Users.js:29
msgid "Edit Details"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:82
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:86
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:90
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:94
msgid "Edit Execution Environment"
msgstr ""
@@ -2408,16 +2465,16 @@ msgstr ""
msgid "Edit Group"
msgstr ""
-#: screens/Host/HostList/HostListItem.js:68
-#: screens/Host/HostList/HostListItem.js:72
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:60
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:63
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:66
+#: screens/Host/HostList/HostListItem.js:74
+#: screens/Host/HostList/HostListItem.js:78
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:61
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:64
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:67
msgid "Edit Host"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:130
-#: screens/Inventory/InventoryList/InventoryListItem.js:135
+#: screens/Inventory/InventoryList/InventoryListItem.js:134
+#: screens/Inventory/InventoryList/InventoryListItem.js:139
msgid "Edit Inventory"
msgstr ""
@@ -2447,22 +2504,22 @@ msgstr ""
msgid "Edit Organization"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:235
-#: screens/Project/ProjectList/ProjectListItem.js:240
+#: screens/Project/ProjectList/ProjectListItem.js:248
+#: screens/Project/ProjectList/ProjectListItem.js:253
msgid "Edit Project"
msgstr ""
-#: screens/Template/Templates.js:49
+#: screens/Template/Templates.js:50
msgid "Edit Question"
msgstr ""
#: components/Schedule/ScheduleList/ScheduleListItem.js:118
#: components/Schedule/ScheduleList/ScheduleListItem.js:122
-#: screens/Template/Templates.js:54
+#: screens/Template/Templates.js:55
msgid "Edit Schedule"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:129
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:131
msgid "Edit Source"
msgstr ""
@@ -2470,16 +2527,15 @@ msgstr ""
msgid "Edit Survey"
msgstr ""
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20
-#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:22
+#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:26
#: screens/Team/TeamList/TeamListItem.js:50
#: screens/Team/TeamList/TeamListItem.js:54
msgid "Edit Team"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:219
-#: components/TemplateList/TemplateListItem.js:225
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:103
+#: components/TemplateList/TemplateListItem.js:233
+#: components/TemplateList/TemplateListItem.js:239
msgid "Edit Template"
msgstr ""
@@ -2500,12 +2556,12 @@ msgstr ""
#: screens/CredentialType/CredentialTypes.js:25
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25
-#: screens/InstanceGroup/InstanceGroups.js:56
-#: screens/InstanceGroup/InstanceGroups.js:61
-#: screens/Inventory/Inventories.js:61
-#: screens/Inventory/Inventories.js:66
-#: screens/Inventory/Inventories.js:75
-#: screens/Inventory/Inventories.js:86
+#: screens/InstanceGroup/InstanceGroups.js:64
+#: screens/InstanceGroup/InstanceGroups.js:69
+#: screens/Inventory/Inventories.js:63
+#: screens/Inventory/Inventories.js:68
+#: screens/Inventory/Inventories.js:77
+#: screens/Inventory/Inventories.js:88
msgid "Edit details"
msgstr ""
@@ -2514,7 +2570,7 @@ msgstr ""
msgid "Edit group"
msgstr ""
-#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42
+#: screens/Inventory/InventoryHosts/InventoryHostItem.js:48
msgid "Edit host"
msgstr ""
@@ -2536,13 +2592,13 @@ msgstr ""
msgid "Edit this node"
msgstr ""
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:85
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:97
msgid "Edit workflow"
msgstr ""
-#: components/Workflow/WorkflowNodeHelp.js:168
+#: components/Workflow/WorkflowNodeHelp.js:170
#: screens/Job/JobOutput/shared/OutputToolbar.js:125
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:257
msgid "Elapsed"
msgstr ""
@@ -2555,22 +2611,22 @@ msgid "Elapsed time that the job ran"
msgstr ""
#: components/NotificationList/NotificationList.js:193
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:149
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134
#: screens/User/UserDetail/UserDetail.js:66
#: screens/User/UserList/UserList.js:115
#: screens/User/shared/UserForm.js:73
msgid "Email"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:173
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:175
msgid "Email Options"
msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:242
+#: screens/Template/shared/WorkflowJobTemplateForm.js:232
msgid "Enable Concurrent Jobs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:610
+#: screens/Template/shared/JobTemplateForm.js:545
msgid "Enable Fact Storage"
msgstr ""
@@ -2578,14 +2634,14 @@ msgstr ""
msgid "Enable HTTPS certificate verification"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:583
-#: screens/Template/shared/JobTemplateForm.js:586
-#: screens/Template/shared/WorkflowJobTemplateForm.js:221
-#: screens/Template/shared/WorkflowJobTemplateForm.js:224
+#: screens/Template/shared/JobTemplateForm.js:521
+#: screens/Template/shared/JobTemplateForm.js:524
+#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Template/shared/WorkflowJobTemplateForm.js:216
msgid "Enable Webhook"
msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:227
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:15
msgid "Enable Webhook for this workflow job template."
msgstr ""
@@ -2597,8 +2653,8 @@ msgstr ""
msgid "Enable log system tracking facts individually"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:217
-#: components/AdHocCommands/AdHocDetailsStep.js:220
+#: components/AdHocCommands/AdHocDetailsStep.js:201
+#: components/AdHocCommands/AdHocDetailsStep.js:204
msgid "Enable privilege escalation"
msgstr ""
@@ -2610,35 +2666,35 @@ msgstr ""
msgid "Enable simplified login for your {brandName} applications"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:589
+#: screens/Template/shared/JobTemplate.helptext.js:30
msgid "Enable webhook for this template."
msgstr ""
#: components/InstanceToggle/InstanceToggle.js:55
-#: components/Lookup/HostFilterLookup.js:100
+#: components/Lookup/HostFilterLookup.js:110
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
msgid "Enabled"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:190
-#: components/PromptDetail/PromptJobTemplateDetail.js:189
+#: components/PromptDetail/PromptInventorySourceDetail.js:183
+#: components/PromptDetail/PromptJobTemplateDetail.js:182
#: components/PromptDetail/PromptProjectDetail.js:130
#: components/PromptDetail/PromptWFJobTemplateDetail.js:97
-#: screens/Credential/CredentialDetail/CredentialDetail.js:259
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:250
-#: screens/Project/ProjectDetail/ProjectDetail.js:241
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:339
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:183
+#: screens/Credential/CredentialDetail/CredentialDetail.js:269
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281
+#: screens/Project/ProjectDetail/ProjectDetail.js:284
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:351
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:200
msgid "Enabled Options"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:254
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:267
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135
msgid "Enabled Value"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:243
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:262
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
msgid "Enabled Variable"
msgstr ""
@@ -2650,7 +2706,7 @@ msgstr ""
#~ "template."
#~ msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:225
+#: components/AdHocCommands/AdHocDetailsStep.js:209
msgid ""
"Enables creation of a provisioning\n"
"callback URL. Using the URL a host can contact {brandName}\n"
@@ -2659,19 +2715,23 @@ msgid ""
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:568
-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."
+#~ 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/Template/shared/JobTemplate.helptext.js:28
+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 ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:153
+#: screens/Credential/CredentialDetail/CredentialDetail.js:160
#: screens/Setting/shared/SettingDetail.js:87
msgid "Encrypted"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:497
+#: components/Schedule/shared/FrequencyDetailSubform.js:500
msgid "End"
msgstr ""
@@ -2683,7 +2743,7 @@ msgstr ""
msgid "End date"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:552
+#: components/Schedule/shared/FrequencyDetailSubform.js:555
msgid "End date/time"
msgstr ""
@@ -2699,7 +2759,7 @@ msgstr ""
msgid "End user license agreement"
msgstr ""
-#: screens/Host/HostList/SmartInventoryButton.js:15
+#: screens/Host/HostList/SmartInventoryButton.js:23
msgid "Enter at least one search filter to create a new Smart Inventory"
msgstr ""
@@ -2719,19 +2779,19 @@ msgid ""
msgstr ""
#: screens/Inventory/shared/InventoryForm.js:65
-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 ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:181
-msgid "Enter one Annotation Tag per line, without commas."
-msgstr ""
+#~ msgid "Enter one Annotation Tag per line, without commas."
+#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:232
-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 ""
+#~ 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.js:365
#~ msgid ""
@@ -2740,16 +2800,16 @@ msgstr ""
#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:367
-msgid ""
-"Enter one Slack channel per line. The pound symbol (#)\n"
-"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
-msgstr ""
+#~ msgid ""
+#~ "Enter one Slack channel per line. The pound symbol (#)\n"
+#~ "is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:90
-msgid ""
-"Enter one email address per line to create a recipient\n"
-"list for this type of notification."
-msgstr ""
+#~ msgid ""
+#~ "Enter one email address per line to create a recipient\n"
+#~ "list for this type of notification."
+#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413
#~ msgid ""
@@ -2764,159 +2824,164 @@ msgstr ""
#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:420
-msgid ""
-"Enter one phone number per line to specify where to\n"
-"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
-msgstr ""
+#~ msgid ""
+#~ "Enter one phone number per line to specify where to\n"
+#~ "route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+#~ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:410
-msgid ""
-"Enter the number associated with the \"Messaging\n"
-"Service\" in Twilio in the format +18005550199."
-msgstr ""
+#~ msgid ""
+#~ "Enter the number associated with the \"Messaging\n"
+#~ "Service\" in Twilio in the format +18005550199."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Insights1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:60
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:59
-msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
-msgstr ""
+#~ msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide."
+#~ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
+#~ msgstr ""
+
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:87
+msgid "Environment variables or extra variables that specify the values a credential type can inject."
msgstr ""
-#: components/JobList/JobList.js:229
-#: components/StatusLabel/StatusLabel.js:33
+#: components/JobList/JobList.js:233
+#: components/StatusLabel/StatusLabel.js:38
#: components/Workflow/WorkflowNodeHelp.js:108
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:133
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:205
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:215
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:138
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312
-#: screens/Job/JobOutput/JobOutputSearch.js:130
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:230
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:123
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:135
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:236
+#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/TopologyView/Legend.js:124
msgid "Error"
msgstr ""
-#: screens/Project/ProjectList/ProjectList.js:286
+#: screens/Project/ProjectList/ProjectList.js:302
msgid "Error fetching updated project"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:485
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:496
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141
msgid "Error message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:494
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:505
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150
msgid "Error message body"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:613
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:615
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:619
msgid "Error saving the workflow!"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:110
+#: components/AdHocCommands/AdHocCommands.js:104
#: components/CopyButton/CopyButton.js:51
#: components/DeleteButton/DeleteButton.js:56
#: components/HostToggle/HostToggle.js:76
#: components/InstanceToggle/InstanceToggle.js:67
-#: components/JobList/JobList.js:311
-#: components/JobList/JobList.js:322
+#: components/JobList/JobList.js:315
+#: components/JobList/JobList.js:326
#: components/LaunchButton/LaunchButton.js:162
#: components/LaunchPrompt/LaunchPrompt.js:66
#: components/NotificationList/NotificationList.js:246
#: components/PaginatedTable/ToolbarDeleteButton.js:205
-#: components/ResourceAccessList/ResourceAccessList.js:233
-#: components/ResourceAccessList/ResourceAccessList.js:245
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:434
+#: components/RelatedTemplateList/RelatedTemplateList.js:241
+#: components/ResourceAccessList/ResourceAccessList.js:277
+#: components/ResourceAccessList/ResourceAccessList.js:289
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:427
#: components/Schedule/ScheduleList/ScheduleList.js:238
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:73
#: components/Schedule/shared/SchedulePromptableFields.js:70
-#: components/TemplateList/TemplateList.js:281
+#: components/TemplateList/TemplateList.js:299
#: contexts/Config.js:94
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:131
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:155
#: screens/Application/ApplicationsList/ApplicationsList.js:185
-#: screens/Credential/CredentialDetail/CredentialDetail.js:305
-#: screens/Credential/CredentialList/CredentialList.js:194
+#: screens/Credential/CredentialDetail/CredentialDetail.js:315
+#: screens/Credential/CredentialList/CredentialList.js:214
#: screens/Host/HostDetail/HostDetail.js:56
-#: screens/Host/HostDetail/HostDetail.js:120
+#: screens/Host/HostDetail/HostDetail.js:121
#: screens/Host/HostGroups/HostGroupsList.js:244
-#: screens/Host/HostList/HostList.js:222
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:296
-#: screens/InstanceGroup/Instances/InstanceList.js:296
+#: screens/Host/HostList/HostList.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:297
#: screens/InstanceGroup/Instances/InstanceListItem.js:218
-#: screens/Instances/InstanceDetail/InstanceDetail.js:243
+#: screens/Instances/InstanceDetail/InstanceDetail.js:249
#: screens/Instances/InstanceList/InstanceList.js:178
#: screens/Instances/InstanceList/InstanceListItem.js:234
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:149
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:171
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:78
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:284
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:295
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:285
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:296
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:119
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:261
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:200
-#: screens/Inventory/InventoryList/InventoryList.js:269
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:201
+#: screens/Inventory/InventoryList/InventoryList.js:285
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:264
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:307
-#: screens/Inventory/InventorySources/InventorySourceList.js:240
-#: screens/Inventory/InventorySources/InventorySourceList.js:253
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:183
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339
+#: screens/Inventory/InventorySources/InventorySourceList.js:239
+#: screens/Inventory/InventorySources/InventorySourceList.js:252
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:185
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:152
#: screens/Inventory/shared/InventorySourceSyncButton.js:49
-#: screens/Login/Login.js:196
+#: screens/Login/Login.js:217
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:125
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:428
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:220
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:439
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:233
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:169
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:208
#: screens/Organization/OrganizationList/OrganizationList.js:195
-#: screens/Project/ProjectDetail/ProjectDetail.js:287
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:179
-#: screens/Project/ProjectList/ProjectList.js:275
-#: screens/Project/ProjectList/ProjectList.js:287
-#: screens/Project/shared/ProjectSyncButton.js:62
+#: screens/Project/ProjectDetail/ProjectDetail.js:330
+#: screens/Project/ProjectList/ProjectList.js:291
+#: screens/Project/ProjectList/ProjectList.js:303
+#: screens/Project/shared/ProjectSyncButton.js:59
#: screens/Team/TeamDetail/TeamDetail.js:78
#: screens/Team/TeamList/TeamList.js:192
#: screens/Team/TeamRoles/TeamRolesList.js:247
#: screens/Team/TeamRoles/TeamRolesList.js:258
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:518
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:537
#: screens/Template/TemplateSurvey.js:130
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:257
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:279
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:193
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:318
@@ -2927,13 +2992,16 @@ msgstr ""
#: screens/User/UserRoles/UserRolesList.js:243
#: screens/User/UserRoles/UserRolesList.js:254
#: screens/User/UserTeams/UserTeamList.js:259
-#: screens/User/UserTokenDetail/UserTokenDetail.js:81
-#: screens/User/UserTokenList/UserTokenList.js:209
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:211
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:246
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257
+#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenList/UserTokenList.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:373
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:384
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:395
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:406
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:277
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:288
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:299
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:310
msgid "Error!"
msgstr ""
@@ -2941,14 +3009,14 @@ msgstr ""
msgid "Error:"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:256
-#: screens/Instances/InstanceDetail/InstanceDetail.js:210
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:260
+#: screens/Instances/InstanceDetail/InstanceDetail.js:214
msgid "Errors"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:257
+#: screens/ActivityStream/ActivityStream.js:265
#: screens/ActivityStream/ActivityStreamListItem.js:46
-#: screens/Job/JobOutput/JobOutputSearch.js:97
+#: screens/Job/JobOutput/JobOutputSearch.js:100
msgid "Event"
msgstr ""
@@ -2964,14 +3032,18 @@ msgstr ""
msgid "Event summary not available"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:226
+#: screens/ActivityStream/ActivityStream.js:234
msgid "Events"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:144
msgid "Every minute for {0} times"
msgstr ""
+#: screens/TopologyView/Legend.js:82
+msgid "Ex"
+msgstr ""
+
#: components/Search/LookupTypeInput.js:39
msgid "Exact match (default lookup if not specified)."
msgstr ""
@@ -2980,68 +3052,68 @@ msgstr ""
msgid "Exact search on id field."
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26
+#: screens/Project/shared/Project.helptext.js:23
msgid "Example URLs for GIT Source Control include:"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20
+#: screens/Project/shared/Project.helptext.js:62
msgid "Example URLs for Remote Archive Source Control include:"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21
+#: screens/Project/shared/Project.helptext.js:45
msgid "Example URLs for Subversion Source Control include:"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64
+#: screens/Project/shared/Project.helptext.js:84
msgid "Examples include:"
msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:107
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:10
msgid "Examples:"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47
msgid "Execute regardless of the parent node's final state."
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
msgid "Execute when the parent node results in a failure state."
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
msgid "Execute when the parent node results in a successful state."
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:198
+#: screens/InstanceGroup/Instances/InstanceList.js:197
#: screens/Instances/InstanceList/InstanceList.js:117
msgid "Execution"
msgstr ""
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:90
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91
-#: components/AdHocCommands/AdHocPreviewStep.js:56
+#: components/AdHocCommands/AdHocPreviewStep.js:58
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:15
#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:41
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:104
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:105
#: components/Lookup/ExecutionEnvironmentLookup.js:155
#: components/Lookup/ExecutionEnvironmentLookup.js:186
#: components/Lookup/ExecutionEnvironmentLookup.js:201
msgid "Execution Environment"
msgstr ""
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:69
-#: components/TemplateList/TemplateListItem.js:155
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:70
+#: components/TemplateList/TemplateListItem.js:160
msgid "Execution Environment Missing"
msgstr ""
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:103
-#: routeConfig.js:146
-#: screens/ActivityStream/ActivityStream.js:209
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:115
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:177
+#: routeConfig.js:147
+#: screens/ActivityStream/ActivityStream.js:217
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:191
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22
-#: screens/Organization/Organization.js:126
+#: screens/Organization/Organization.js:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:78
#: screens/Organization/Organizations.js:34
#: util/getRelatedResourceDeleteDetails.js:80
@@ -3049,18 +3121,26 @@ msgstr ""
msgid "Execution Environments"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:272
+#: screens/Job/JobDetail/JobDetail.js:340
msgid "Execution Node"
msgstr ""
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:110
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:103
+msgid "Execution environment copied successfully"
+msgstr ""
+
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:112
msgid "Execution environment is missing or deleted."
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:83
msgid "Execution environment not found."
msgstr ""
+#: screens/TopologyView/Legend.js:86
+msgid "Execution node"
+msgstr ""
+
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26
msgid "Exit Without Saving"
@@ -3070,7 +3150,7 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:104
+#: components/DataListToolbar/DataListToolbar.js:105
msgid "Expand all rows"
msgstr ""
@@ -3092,15 +3172,15 @@ msgid "Expected at least one of client_email, project_id or private_key to be pr
msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:137
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:172
-#: screens/User/UserTokenDetail/UserTokenDetail.js:52
-#: screens/User/UserTokenList/UserTokenList.js:142
-#: screens/User/UserTokenList/UserTokenList.js:185
-#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/UserTokenDetail/UserTokenDetail.js:55
+#: screens/User/UserTokenList/UserTokenList.js:146
+#: screens/User/UserTokenList/UserTokenList.js:190
+#: screens/User/UserTokenList/UserTokenListItem.js:35
#: screens/User/UserTokens/UserTokens.js:89
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192
msgid "Expires"
msgstr ""
@@ -3112,13 +3192,12 @@ msgstr ""
msgid "Expires on UTC"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:50
msgid "Expires on {0}"
msgstr ""
-#: components/JobList/JobListItem.js:287
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:119
+#: components/JobList/JobListItem.js:306
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222
msgid "Explanation"
msgstr ""
@@ -3126,35 +3205,39 @@ msgstr ""
msgid "External Secret Management System"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:288
-#: components/AdHocCommands/AdHocDetailsStep.js:289
+#: components/AdHocCommands/AdHocDetailsStep.js:272
+#: components/AdHocCommands/AdHocDetailsStep.js:273
msgid "Extra variables"
msgstr ""
#: components/Sparkline/Sparkline.js:35
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:166
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:42
-#: screens/Project/ProjectDetail/ProjectDetail.js:124
-#: screens/Project/ProjectList/ProjectListItem.js:73
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:43
+#: screens/Project/ProjectDetail/ProjectDetail.js:139
+#: screens/Project/ProjectList/ProjectListItem.js:77
msgid "FINISHED:"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:80
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:142
+#: components/PromptDetail/PromptJobTemplateDetail.js:73
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:135
msgid "Fact Storage"
msgstr ""
-#: screens/Host/Host.js:62
+#: screens/Template/shared/JobTemplate.helptext.js:36
+msgid "Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.."
+msgstr ""
+
+#: screens/Host/Host.js:63
#: screens/Host/HostFacts/HostFacts.js:45
-#: screens/Host/Hosts.js:29
-#: screens/Inventory/Inventories.js:69
+#: screens/Host/Hosts.js:28
+#: screens/Inventory/Inventories.js:71
#: screens/Inventory/InventoryHost/InventoryHost.js:78
#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39
msgid "Facts"
msgstr ""
-#: components/JobList/JobList.js:228
-#: components/StatusLabel/StatusLabel.js:32
+#: components/JobList/JobList.js:232
+#: components/StatusLabel/StatusLabel.js:37
#: components/Workflow/WorkflowNodeHelp.js:105
#: screens/Dashboard/shared/ChartTooltip.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:47
@@ -3179,15 +3262,16 @@ msgstr ""
msgid "Failed jobs"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:261
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:291
msgid "Failed to approve one or more workflow approval."
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:387
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:398
msgid "Failed to approve workflow approval."
msgstr ""
-#: components/ResourceAccessList/ResourceAccessList.js:237
+#: components/ResourceAccessList/ResourceAccessList.js:281
msgid "Failed to assign roles properly"
msgstr ""
@@ -3197,60 +3281,65 @@ msgid "Failed to associate role"
msgstr ""
#: screens/Host/HostGroups/HostGroupsList.js:248
-#: screens/InstanceGroup/Instances/InstanceList.js:299
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:300
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:288
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:265
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:268
#: screens/User/UserTeams/UserTeamList.js:263
msgid "Failed to associate."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:109
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:111
msgid "Failed to cancel Inventory Source Sync"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:261
-#: screens/Project/ProjectList/ProjectListItem.js:219
+#: screens/Project/ProjectDetail/ProjectDetail.js:304
+#: screens/Project/ProjectList/ProjectListItem.js:232
msgid "Failed to cancel Project Sync"
msgstr ""
-#: components/JobList/JobList.js:325
+#: components/JobList/JobList.js:329
msgid "Failed to cancel one or more jobs."
msgstr ""
-#: components/JobList/JobListItem.js:107
-#: screens/Job/JobDetail/JobDetail.js:493
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:302
+msgid "Failed to cancel one or more workflow approval."
+msgstr ""
+
+#: components/JobList/JobListItem.js:114
+#: screens/Job/JobDetail/JobDetail.js:583
#: screens/Job/JobOutput/shared/OutputToolbar.js:138
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:90
msgid "Failed to cancel {0}"
msgstr ""
-#: screens/Credential/CredentialList/CredentialListItem.js:85
+#: screens/Credential/CredentialList/CredentialListItem.js:88
msgid "Failed to copy credential."
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:104
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:112
msgid "Failed to copy execution environment"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:158
+#: screens/Inventory/InventoryList/InventoryListItem.js:162
msgid "Failed to copy inventory."
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:257
+#: screens/Project/ProjectList/ProjectListItem.js:270
msgid "Failed to copy project."
msgstr ""
-#: components/TemplateList/TemplateListItem.js:239
+#: components/TemplateList/TemplateListItem.js:253
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:160
msgid "Failed to copy template."
msgstr ""
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:134
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:138
msgid "Failed to delete application."
msgstr ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:308
+#: screens/Credential/CredentialDetail/CredentialDetail.js:318
msgid "Failed to delete credential."
msgstr ""
@@ -3258,24 +3347,24 @@ msgstr ""
msgid "Failed to delete group {0}."
msgstr ""
-#: screens/Host/HostDetail/HostDetail.js:123
+#: screens/Host/HostDetail/HostDetail.js:124
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:122
msgid "Failed to delete host."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:311
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:343
msgid "Failed to delete inventory source {name}."
msgstr ""
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:152
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:174
msgid "Failed to delete inventory."
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:521
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:540
msgid "Failed to delete job template."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:432
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:443
msgid "Failed to delete notification."
msgstr ""
@@ -3287,11 +3376,11 @@ msgstr ""
msgid "Failed to delete one or more credential types."
msgstr ""
-#: screens/Credential/CredentialList/CredentialList.js:197
+#: screens/Credential/CredentialList/CredentialList.js:217
msgid "Failed to delete one or more credentials."
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:218
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:233
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3299,32 +3388,32 @@ msgstr ""
msgid "Failed to delete one or more groups."
msgstr ""
-#: screens/Host/HostList/HostList.js:225
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:203
+#: screens/Host/HostList/HostList.js:236
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:204
msgid "Failed to delete one or more hosts."
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:239
msgid "Failed to delete one or more instance groups."
msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:272
+#: screens/Inventory/InventoryList/InventoryList.js:288
msgid "Failed to delete one or more inventories."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:256
+#: screens/Inventory/InventorySources/InventorySourceList.js:255
msgid "Failed to delete one or more inventory sources."
msgstr ""
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:182
+#: components/RelatedTemplateList/RelatedTemplateList.js:244
msgid "Failed to delete one or more job templates."
msgstr ""
-#: components/JobList/JobList.js:314
+#: components/JobList/JobList.js:318
msgid "Failed to delete one or more jobs."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:223
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:236
msgid "Failed to delete one or more notification template."
msgstr ""
@@ -3332,7 +3421,7 @@ msgstr ""
msgid "Failed to delete one or more organizations."
msgstr ""
-#: screens/Project/ProjectList/ProjectList.js:278
+#: screens/Project/ProjectList/ProjectList.js:294
msgid "Failed to delete one or more projects."
msgstr ""
@@ -3344,7 +3433,7 @@ msgstr ""
msgid "Failed to delete one or more teams."
msgstr ""
-#: components/TemplateList/TemplateList.js:284
+#: components/TemplateList/TemplateList.js:302
msgid "Failed to delete one or more templates."
msgstr ""
@@ -3352,7 +3441,7 @@ msgstr ""
msgid "Failed to delete one or more tokens."
msgstr ""
-#: screens/User/UserTokenList/UserTokenList.js:212
+#: screens/User/UserTokenList/UserTokenList.js:217
msgid "Failed to delete one or more user tokens."
msgstr ""
@@ -3360,19 +3449,19 @@ msgstr ""
msgid "Failed to delete one or more users."
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:249
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:280
msgid "Failed to delete one or more workflow approval."
msgstr ""
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:200
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:211
msgid "Failed to delete organization."
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:290
+#: screens/Project/ProjectDetail/ProjectDetail.js:333
msgid "Failed to delete project."
msgstr ""
-#: components/ResourceAccessList/ResourceAccessList.js:248
+#: components/ResourceAccessList/ResourceAccessList.js:292
msgid "Failed to delete role"
msgstr ""
@@ -3381,11 +3470,11 @@ msgstr ""
msgid "Failed to delete role."
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:437
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:430
msgid "Failed to delete schedule."
msgstr ""
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:186
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:188
msgid "Failed to delete smart inventory."
msgstr ""
@@ -3397,11 +3486,11 @@ msgstr ""
msgid "Failed to delete user."
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:376
msgid "Failed to delete workflow approval."
msgstr ""
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:260
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:282
msgid "Failed to delete workflow job template."
msgstr ""
@@ -3410,11 +3499,11 @@ msgstr ""
msgid "Failed to delete {name}."
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:262
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:313
msgid "Failed to deny one or more workflow approval."
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:409
msgid "Failed to deny workflow approval."
msgstr ""
@@ -3424,13 +3513,13 @@ msgstr ""
msgid "Failed to disassociate one or more groups."
msgstr ""
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:298
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:299
msgid "Failed to disassociate one or more hosts."
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:301
-#: screens/InstanceGroup/Instances/InstanceList.js:301
-#: screens/Instances/InstanceDetail/InstanceDetail.js:248
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:308
+#: screens/InstanceGroup/Instances/InstanceList.js:302
+#: screens/Instances/InstanceDetail/InstanceDetail.js:254
msgid "Failed to disassociate one or more instances."
msgstr ""
@@ -3438,15 +3527,15 @@ msgstr ""
msgid "Failed to disassociate one or more teams."
msgstr ""
-#: screens/Login/Login.js:200
+#: screens/Login/Login.js:221
msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead."
msgstr ""
-#: screens/Project/ProjectList/ProjectList.js:290
+#: screens/Project/ProjectList/ProjectList.js:306
msgid "Failed to fetch the updated project data."
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:118
+#: components/AdHocCommands/AdHocCommands.js:112
#: components/LaunchButton/LaunchButton.js:165
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:128
msgid "Failed to launch job."
@@ -3464,7 +3553,7 @@ msgstr ""
msgid "Failed to retrieve node credentials."
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:303
+#: screens/InstanceGroup/Instances/InstanceList.js:304
#: screens/Instances/InstanceList/InstanceList.js:181
msgid "Failed to run a health check on one or more instances."
msgstr ""
@@ -3477,11 +3566,11 @@ msgstr ""
msgid "Failed to sync inventory source."
msgstr ""
-#: screens/Project/shared/ProjectSyncButton.js:65
+#: screens/Project/shared/ProjectSyncButton.js:62
msgid "Failed to sync project."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:243
+#: screens/Inventory/InventorySources/InventorySourceList.js:242
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3501,9 +3590,9 @@ msgstr ""
msgid "Failed to toggle schedule."
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:300
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:307
#: screens/InstanceGroup/Instances/InstanceListItem.js:222
-#: screens/Instances/InstanceDetail/InstanceDetail.js:247
+#: screens/Instances/InstanceDetail/InstanceDetail.js:253
#: screens/Instances/InstanceList/InstanceListItem.js:238
msgid "Failed to update capacity adjustment."
msgstr ""
@@ -3512,7 +3601,7 @@ msgstr ""
msgid "Failed to update survey."
msgstr ""
-#: screens/User/UserTokenDetail/UserTokenDetail.js:84
+#: screens/User/UserTokenDetail/UserTokenDetail.js:87
msgid "Failed to user token."
msgstr ""
@@ -3521,17 +3610,17 @@ msgstr ""
msgid "Failure"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "False"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:115
+#: components/Schedule/shared/FrequencyDetailSubform.js:118
msgid "February"
msgstr ""
@@ -3543,7 +3632,7 @@ msgstr ""
msgid "Field ends with value."
msgstr ""
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:79
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:76
msgid "Field for passing a custom Kubernetes or OpenShift Pod specification."
msgstr ""
@@ -3555,11 +3644,11 @@ msgstr ""
msgid "Field starts with value."
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:406
+#: components/Schedule/shared/FrequencyDetailSubform.js:409
msgid "Fifth"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:114
+#: screens/Job/JobOutput/JobOutputSearch.js:106
msgid "File Difference"
msgstr ""
@@ -3571,28 +3660,28 @@ msgstr ""
msgid "File, directory or script"
msgstr ""
-#: components/Search/Search.js:180
-#: components/Search/Search.js:204
+#: components/Search/Search.js:198
+#: components/Search/Search.js:222
msgid "Filter By {name}"
msgstr ""
-#: components/JobList/JobList.js:244
-#: components/JobList/JobListItem.js:93
+#: components/JobList/JobList.js:248
+#: components/JobList/JobListItem.js:100
msgid "Finish Time"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:116
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:159
+#: screens/Job/JobDetail/JobDetail.js:206
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:249
msgid "Finished"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:394
+#: components/Schedule/shared/FrequencyDetailSubform.js:397
msgid "First"
msgstr ""
-#: components/AddRole/AddResourceRole.js:27
-#: components/AddRole/AddResourceRole.js:41
-#: components/ResourceAccessList/ResourceAccessList.js:134
+#: components/AddRole/AddResourceRole.js:28
+#: components/AddRole/AddResourceRole.js:42
+#: components/ResourceAccessList/ResourceAccessList.js:178
#: screens/User/UserDetail/UserDetail.js:64
#: screens/User/UserList/UserList.js:124
#: screens/User/UserList/UserList.js:161
@@ -3601,16 +3690,17 @@ msgstr ""
msgid "First Name"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255
msgid "First Run"
msgstr ""
-#: components/ResourceAccessList/ResourceAccessList.js:183
+#: components/ResourceAccessList/ResourceAccessList.js:227
#: components/ResourceAccessList/ResourceAccessListItem.js:67
msgid "First name"
msgstr ""
-#: components/Search/AdvancedSearch.js:224
+#: components/Search/AdvancedSearch.js:213
+#: components/Search/AdvancedSearch.js:227
msgid "First, select a key"
msgstr ""
@@ -3618,60 +3708,71 @@ msgstr ""
msgid "Fit the graph to the available screen size"
msgstr ""
+#: screens/TopologyView/Header.js:75
+#: screens/TopologyView/Header.js:78
+msgid "Fit to screen"
+msgstr ""
+
#: screens/Template/Survey/SurveyQuestionForm.js:94
msgid "Float"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:181
+#: screens/Job/JobOutput/JobOutputSearch.js:184
msgid "Follow"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:253
-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 ""
+#~ 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.js:113
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:114
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.js:78
+#: screens/Job/Job.helptext.js:5
+#: screens/Template/shared/JobTemplate.helptext.js:5
+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 ""
+
+#: screens/Project/shared/Project.helptext.js:98
msgid "For more information, refer to the"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:176
-#: components/AdHocCommands/AdHocDetailsStep.js:177
-#: components/PromptDetail/PromptJobTemplateDetail.js:154
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:255
-#: screens/Template/shared/JobTemplateForm.js:424
+#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:161
+#: components/PromptDetail/PromptJobTemplateDetail.js:147
+#: screens/Job/JobDetail/JobDetail.js:384
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:252
+#: screens/Template/shared/JobTemplateForm.js:403
msgid "Forks"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:404
+#: components/Schedule/shared/FrequencyDetailSubform.js:407
msgid "Fourth"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:175
+#: components/Schedule/shared/ScheduleForm.js:177
msgid "Frequency Details"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:198
+#: components/Schedule/shared/FrequencyDetailSubform.js:201
#: components/Schedule/shared/buildRuleObj.js:71
msgid "Frequency did not match an expected value"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:300
+#: components/Schedule/shared/FrequencyDetailSubform.js:303
msgid "Fri"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:305
-#: components/Schedule/shared/FrequencyDetailSubform.js:443
+#: components/Schedule/shared/FrequencyDetailSubform.js:308
+#: components/Schedule/shared/FrequencyDetailSubform.js:446
msgid "Friday"
msgstr ""
@@ -3683,7 +3784,7 @@ msgstr ""
msgid "Fuzzy search on name field."
msgstr ""
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:142
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:153
#: screens/Organization/shared/OrganizationForm.js:101
msgid "Galaxy Credentials"
msgstr ""
@@ -3692,7 +3793,7 @@ msgstr ""
msgid "Galaxy credentials must be owned by an Organization."
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:122
+#: screens/Job/JobOutput/JobOutputSearch.js:107
msgid "Gathering Facts"
msgstr ""
@@ -3707,13 +3808,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.js:135
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
-#: screens/Project/ProjectList/ProjectList.js:184
+#: screens/Job/JobDetail/JobDetail.js:74
+#: screens/Project/ProjectList/ProjectList.js:198
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97
msgid "Git"
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:104
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:105
msgid "GitHub"
msgstr ""
@@ -3751,8 +3853,8 @@ msgstr ""
msgid "GitHub settings"
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:297
-#: screens/Template/shared/WebhookSubForm.js:110
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:305
+#: screens/Template/shared/WebhookSubForm.js:111
msgid "GitLab"
msgstr ""
@@ -3760,12 +3862,12 @@ msgstr ""
#~ msgid "Global Default Execution Environment"
#~ msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:76
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:78
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:84
msgid "Globally Available"
msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:133
msgid "Globally available execution environment can not be reassigned to a specific Organization"
msgstr ""
@@ -3798,16 +3900,16 @@ msgid "Google OAuth2"
msgstr ""
#: components/NotificationList/NotificationList.js:194
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135
msgid "Grafana"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:158
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:153
msgid "Grafana API key"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:180
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:147
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:182
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:144
msgid "Grafana URL"
msgstr ""
@@ -3819,11 +3921,11 @@ msgstr ""
msgid "Greater than or equal to comparison."
msgstr ""
-#: components/Lookup/HostFilterLookup.js:92
+#: components/Lookup/HostFilterLookup.js:102
msgid "Group"
msgstr ""
-#: screens/Inventory/Inventories.js:76
+#: screens/Inventory/Inventories.js:78
msgid "Group details"
msgstr ""
@@ -3831,27 +3933,27 @@ msgstr ""
msgid "Group type"
msgstr ""
-#: screens/Host/Host.js:67
+#: screens/Host/Host.js:68
#: screens/Host/HostGroups/HostGroupsList.js:231
-#: screens/Host/Hosts.js:30
-#: screens/Inventory/Inventories.js:70
+#: screens/Host/Hosts.js:29
#: screens/Inventory/Inventories.js:72
-#: screens/Inventory/Inventory.js:64
+#: screens/Inventory/Inventories.js:74
+#: screens/Inventory/Inventory.js:66
#: screens/Inventory/InventoryHost/InventoryHost.js:83
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:248
-#: screens/Inventory/InventoryList/InventoryListItem.js:123
+#: screens/Inventory/InventoryList/InventoryListItem.js:127
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:251
#: util/getRelatedResourceDeleteDetails.js:118
msgid "Groups"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:369
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:470
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:378
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:453
msgid "HTTP Headers"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:364
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:484
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:373
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:466
msgid "HTTP Method"
msgstr ""
@@ -3859,10 +3961,11 @@ msgstr ""
#: components/HealthCheckButton/HealthCheckButton.js:45
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:273
#: screens/Instances/InstanceDetail/InstanceDetail.js:228
-msgid "Health Check"
-msgstr ""
+#~ msgid "Health Check"
+#~ msgstr ""
-#: components/StatusLabel/StatusLabel.js:29
+#: components/StatusLabel/StatusLabel.js:34
+#: screens/TopologyView/Legend.js:118
msgid "Healthy"
msgstr ""
@@ -3880,7 +3983,7 @@ msgid "Hide description"
msgstr ""
#: components/NotificationList/NotificationList.js:195
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:151
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136
msgid "Hipchat"
msgstr ""
@@ -3888,23 +3991,27 @@ msgstr ""
msgid "Hop"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:112
+#: screens/TopologyView/Legend.js:103
+msgid "Hop node"
+msgstr ""
+
+#: screens/Job/JobOutput/HostEventModal.js:109
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:148
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:76
msgid "Host"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:109
+#: screens/Job/JobOutput/JobOutputSearch.js:108
msgid "Host Async Failure"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:108
+#: screens/Job/JobOutput/JobOutputSearch.js:109
msgid "Host Async OK"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:161
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:283
-#: screens/Template/shared/JobTemplateForm.js:642
+#: components/PromptDetail/PromptJobTemplateDetail.js:154
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:290
+#: screens/Template/shared/JobTemplateForm.js:575
msgid "Host Config Key"
msgstr ""
@@ -3912,61 +4019,61 @@ msgstr ""
msgid "Host Count"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:91
+#: screens/Job/JobOutput/HostEventModal.js:88
msgid "Host Details"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:100
+#: screens/Job/JobOutput/JobOutputSearch.js:110
msgid "Host Failed"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:103
+#: screens/Job/JobOutput/JobOutputSearch.js:111
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:237
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:264
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:145
msgid "Host Filter"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:140
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:144
msgid "Host Name"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:102
+#: screens/Job/JobOutput/JobOutputSearch.js:112
msgid "Host OK"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:107
+#: screens/Job/JobOutput/JobOutputSearch.js:113
msgid "Host Polling"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:113
+#: screens/Job/JobOutput/JobOutputSearch.js:114
msgid "Host Retry"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:104
+#: screens/Job/JobOutput/JobOutputSearch.js:115
msgid "Host Skipped"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:101
+#: screens/Job/JobOutput/JobOutputSearch.js:116
msgid "Host Started"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:105
+#: screens/Job/JobOutput/JobOutputSearch.js:117
msgid "Host Unreachable"
msgstr ""
-#: screens/Inventory/Inventories.js:67
+#: screens/Inventory/Inventories.js:69
msgid "Host details"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:92
+#: screens/Job/JobOutput/HostEventModal.js:89
msgid "Host details modal"
msgstr ""
-#: screens/Host/Host.js:95
+#: screens/Host/Host.js:96
#: screens/Inventory/InventoryHost/InventoryHost.js:100
msgid "Host not found."
msgstr ""
@@ -3975,23 +4082,23 @@ msgstr ""
msgid "Host status information for this job is unavailable."
msgstr ""
-#: routeConfig.js:84
-#: screens/ActivityStream/ActivityStream.js:168
+#: routeConfig.js:85
+#: screens/ActivityStream/ActivityStream.js:176
#: screens/Dashboard/Dashboard.js:81
-#: screens/Host/HostList/HostList.js:135
-#: screens/Host/HostList/HostList.js:182
-#: screens/Host/Hosts.js:15
-#: screens/Host/Hosts.js:24
-#: screens/Inventory/Inventories.js:63
-#: screens/Inventory/Inventories.js:77
-#: screens/Inventory/Inventory.js:65
+#: screens/Host/HostList/HostList.js:143
+#: screens/Host/HostList/HostList.js:191
+#: screens/Host/Hosts.js:14
+#: screens/Host/Hosts.js:23
+#: screens/Inventory/Inventories.js:65
+#: screens/Inventory/Inventories.js:79
+#: screens/Inventory/Inventory.js:67
#: screens/Inventory/InventoryGroup/InventoryGroup.js:67
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:189
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:271
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:272
#: screens/Inventory/InventoryHosts/InventoryHostList.js:112
-#: screens/Inventory/InventoryHosts/InventoryHostList.js:171
-#: screens/Inventory/SmartInventory.js:67
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:63
+#: screens/Inventory/InventoryHosts/InventoryHostList.js:172
+#: screens/Inventory/SmartInventory.js:68
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:71
#: screens/Job/JobOutput/shared/OutputToolbar.js:97
#: util/getRelatedResourceDeleteDetails.js:122
msgid "Hosts"
@@ -4014,85 +4121,93 @@ msgstr ""
msgid "Hosts remaining"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:153
+#: components/Schedule/shared/ScheduleForm.js:155
msgid "Hour"
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:199
+#: screens/TopologyView/Legend.js:92
+msgid "Hy"
+msgstr ""
+
+#: screens/InstanceGroup/Instances/InstanceList.js:198
#: screens/Instances/InstanceList/InstanceList.js:118
msgid "Hybrid"
msgstr ""
-#: components/JobList/JobList.js:196
-#: components/Lookup/HostFilterLookup.js:88
+#: screens/TopologyView/Legend.js:95
+msgid "Hybrid node"
+msgstr ""
+
+#: components/JobList/JobList.js:200
+#: components/Lookup/HostFilterLookup.js:98
#: screens/Team/TeamRoles/TeamRolesList.js:155
msgid "ID"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:185
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:188
msgid "ID of the Dashboard"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:190
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:193
msgid "ID of the Panel"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:165
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:160
msgid "ID of the dashboard (optional)"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:171
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:166
msgid "ID of the panel (optional)"
msgstr ""
#: components/NotificationList/NotificationList.js:196
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:152
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137
msgid "IRC"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:219
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:223
msgid "IRC Nick"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:214
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:218
msgid "IRC Server Address"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:209
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:213
msgid "IRC Server Port"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:219
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:214
msgid "IRC nick"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:211
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:206
msgid "IRC server address"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:192
msgid "IRC server password"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:202
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:197
msgid "IRC server port"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:253
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:270
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:341
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:258
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:303
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334
msgid "Icon URL"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149
+#: screens/Inventory/shared/Inventory.helptext.js:100
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/shared/InventorySourceSubForms/SharedFields.js:128
+#: screens/Inventory/shared/Inventory.helptext.js:84
msgid ""
"If checked, any hosts and groups that were\n"
"previously present on the external source but are now removed\n"
@@ -4104,12 +4219,16 @@ msgid ""
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:558
-msgid ""
-"If enabled, run this playbook as an\n"
-"administrator."
+#~ msgid ""
+#~ "If enabled, run this playbook as an\n"
+#~ "administrator."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:29
+msgid "If enabled, run this playbook as an administrator."
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:175
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:156
msgid ""
"If enabled, show the changes made\n"
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
@@ -4117,34 +4236,46 @@ msgid ""
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:498
-msgid ""
-"If enabled, show the changes made by\n"
-"Ansible tasks, where supported. This is equivalent\n"
-"to Ansible's --diff mode."
+#~ msgid ""
+#~ "If enabled, show the changes made by\n"
+#~ "Ansible tasks, where supported. This is equivalent\n"
+#~ "to Ansible's --diff mode."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:18
+msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:197
+#: components/AdHocCommands/AdHocDetailsStep.js:181
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.js:604
-msgid ""
-"If enabled, simultaneous runs of this job\n"
-"template will be allowed."
+#~ msgid ""
+#~ "If enabled, simultaneous runs of this job\n"
+#~ "template will be allowed."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:31
+msgid "If enabled, simultaneous runs of this job template will be allowed."
msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:241
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:16
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:611
-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."
+#~ 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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:32
+msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:266
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:275
msgid "If specified, this field will be shown on the node instead of the resource name when viewing the workflow"
msgstr ""
@@ -4162,26 +4293,26 @@ msgstr ""
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204
+#: screens/Inventory/shared/Inventory.helptext.js:120
+#: screens/Inventory/shared/Inventory.helptext.js:139
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.js:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:127
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:67
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:96
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:147
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:166
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:75
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:97
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:89
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:108
-#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:19
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:21
msgid "Image"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:117
+#: screens/Job/JobOutput/JobOutputSearch.js:118
msgid "Including File"
msgstr ""
@@ -4200,17 +4331,17 @@ msgstr ""
msgid "Initiated By"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:245
-#: screens/ActivityStream/ActivityStream.js:255
+#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:263
#: screens/ActivityStream/ActivityStreamDetailButton.js:44
msgid "Initiated by"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:235
+#: screens/ActivityStream/ActivityStream.js:243
msgid "Initiated by (username)"
msgstr ""
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:81
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82
#: screens/CredentialType/shared/CredentialTypeForm.js:46
msgid "Injector configuration"
msgstr ""
@@ -4220,20 +4351,24 @@ msgstr ""
msgid "Input configuration"
msgstr ""
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:79
+msgid "Input schema which defines a set of ordered fields for that type."
+msgstr ""
+
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31
msgid "Insights Credential"
msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72
-msgid "Insights for Ansible Automation Platform"
-msgstr ""
+#~ msgid "Insights for Ansible Automation Platform"
+#~ msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111
-msgid "Insights for Ansible Automation Platform dashboard"
-msgstr ""
+#~ msgid "Insights for Ansible Automation Platform dashboard"
+#~ msgstr ""
-#: components/Lookup/HostFilterLookup.js:113
+#: components/Lookup/HostFilterLookup.js:123
msgid "Insights system ID"
msgstr ""
@@ -4241,44 +4376,44 @@ msgstr ""
msgid "Instance"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:154
+#: components/PromptDetail/PromptInventorySourceDetail.js:147
msgid "Instance Filters"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:278
+#: screens/Job/JobDetail/JobDetail.js:353
msgid "Instance Group"
msgstr ""
#: components/Lookup/InstanceGroupsLookup.js:69
#: components/Lookup/InstanceGroupsLookup.js:75
#: components/Lookup/InstanceGroupsLookup.js:121
-#: components/PromptDetail/PromptJobTemplateDetail.js:229
-#: routeConfig.js:131
-#: screens/ActivityStream/ActivityStream.js:197
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:166
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:268
-#: screens/InstanceGroup/InstanceGroups.js:37
-#: screens/InstanceGroup/InstanceGroups.js:47
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:84
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:117
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:392
+#: components/PromptDetail/PromptJobTemplateDetail.js:222
+#: routeConfig.js:132
+#: screens/ActivityStream/ActivityStream.js:205
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:111
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193
+#: screens/InstanceGroup/InstanceGroups.js:45
+#: screens/InstanceGroup/InstanceGroups.js:55
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:85
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:407
msgid "Instance Groups"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:105
+#: components/Lookup/HostFilterLookup.js:115
msgid "Instance ID"
msgstr ""
-#: screens/InstanceGroup/InstanceGroups.js:54
+#: screens/InstanceGroup/InstanceGroups.js:62
msgid "Instance details"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:64
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:58
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:69
msgid "Instance group"
msgstr ""
-#: screens/InstanceGroup/InstanceGroup.js:104
+#: screens/InstanceGroup/InstanceGroup.js:92
msgid "Instance group not found."
msgstr ""
@@ -4287,21 +4422,21 @@ msgstr ""
msgid "Instance group used capacity"
msgstr ""
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:122
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:124
msgid "Instance groups"
msgstr ""
-#: routeConfig.js:136
-#: screens/ActivityStream/ActivityStream.js:195
-#: screens/InstanceGroup/InstanceGroup.js:86
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288
+#: routeConfig.js:137
+#: screens/ActivityStream/ActivityStream.js:203
+#: screens/InstanceGroup/InstanceGroup.js:74
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:212
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73
-#: screens/InstanceGroup/InstanceGroups.js:52
-#: screens/InstanceGroup/Instances/InstanceList.js:182
-#: screens/InstanceGroup/Instances/InstanceList.js:278
+#: screens/InstanceGroup/InstanceGroups.js:60
+#: screens/InstanceGroup/Instances/InstanceList.js:181
+#: screens/InstanceGroup/Instances/InstanceList.js:279
#: screens/Instances/InstanceList/InstanceList.js:101
-#: screens/Instances/Instances.js:11
-#: screens/Instances/Instances.js:19
+#: screens/Instances/Instances.js:12
+#: screens/Instances/Instances.js:20
msgid "Instances"
msgstr ""
@@ -4329,59 +4464,62 @@ msgstr ""
msgid "Invalid time format"
msgstr ""
-#: screens/Login/Login.js:121
+#: screens/Login/Login.js:142
msgid "Invalid username or password. Please try again."
msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119
-#: routeConfig.js:79
-#: screens/ActivityStream/ActivityStream.js:165
+#: routeConfig.js:80
+#: screens/ActivityStream/ActivityStream.js:173
#: screens/Dashboard/Dashboard.js:92
-#: screens/Inventory/Inventories.js:16
-#: screens/Inventory/InventoryList/InventoryList.js:159
-#: screens/Inventory/InventoryList/InventoryList.js:222
+#: screens/Inventory/Inventories.js:17
+#: screens/Inventory/InventoryList/InventoryList.js:174
+#: screens/Inventory/InventoryList/InventoryList.js:237
#: util/getRelatedResourceDeleteDetails.js:201
#: util/getRelatedResourceDeleteDetails.js:269
msgid "Inventories"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:149
+#: screens/Inventory/InventoryList/InventoryListItem.js:153
msgid "Inventories with sources cannot be copied"
msgstr ""
#: components/HostForm/HostForm.js:48
-#: components/JobList/JobListItem.js:204
+#: components/JobList/JobListItem.js:223
#: components/LaunchPrompt/steps/InventoryStep.js:105
#: components/LaunchPrompt/steps/useInventoryStep.js:48
-#: components/Lookup/HostFilterLookup.js:376
-#: components/Lookup/HostListItem.js:9
+#: components/Lookup/HostFilterLookup.js:423
+#: components/Lookup/HostListItem.js:10
#: components/Lookup/InventoryLookup.js:129
#: components/Lookup/InventoryLookup.js:138
#: components/Lookup/InventoryLookup.js:178
#: components/Lookup/InventoryLookup.js:193
#: components/Lookup/InventoryLookup.js:233
-#: components/PromptDetail/PromptDetail.js:212
-#: components/PromptDetail/PromptInventorySourceDetail.js:94
-#: components/PromptDetail/PromptJobTemplateDetail.js:124
-#: components/PromptDetail/PromptJobTemplateDetail.js:134
+#: components/PromptDetail/PromptDetail.js:205
+#: components/PromptDetail/PromptInventorySourceDetail.js:87
+#: components/PromptDetail/PromptJobTemplateDetail.js:117
+#: components/PromptDetail/PromptJobTemplateDetail.js:127
#: components/PromptDetail/PromptWFJobTemplateDetail.js:77
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:297
-#: components/TemplateList/TemplateListItem.js:283
-#: components/TemplateList/TemplateListItem.js:293
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:290
+#: components/TemplateList/TemplateListItem.js:284
+#: components/TemplateList/TemplateListItem.js:294
#: screens/Host/HostDetail/HostDetail.js:75
-#: screens/Host/HostList/HostList.js:162
-#: screens/Host/HostList/HostListItem.js:55
+#: screens/Host/HostList/HostList.js:171
+#: screens/Host/HostList/HostListItem.js:61
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
-#: screens/Inventory/InventoryList/InventoryList.js:171
-#: screens/Inventory/InventoryList/InventoryListItem.js:113
+#: screens/Inventory/InventoryList/InventoryList.js:186
+#: screens/Inventory/InventoryList/InventoryListItem.js:117
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:39
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:104
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39
-#: screens/Job/JobDetail/JobDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:213
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:221
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:140
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:113
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:41
+#: screens/Job/JobDetail/JobDetail.js:106
+#: screens/Job/JobDetail/JobDetail.js:121
+#: screens/Job/JobDetail/JobDetail.js:128
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:217
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:33
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:293
msgid "Inventory"
msgstr ""
@@ -4389,47 +4527,47 @@ msgstr ""
msgid "Inventory (Name)"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:117
+#: components/PromptDetail/PromptInventorySourceDetail.js:110
msgid "Inventory File"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:96
+#: components/Lookup/HostFilterLookup.js:106
msgid "Inventory ID"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:182
+#: screens/Job/JobDetail/JobDetail.js:262
msgid "Inventory Source"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:205
+#: screens/Job/JobDetail/JobDetail.js:285
msgid "Inventory Source Project"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:87
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:73
msgid "Inventory Source Sync"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:283
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:315
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:110
msgid "Inventory Source Sync Error"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:177
-#: screens/Inventory/InventorySources/InventorySourceList.js:194
+#: screens/Inventory/InventorySources/InventorySourceList.js:176
+#: screens/Inventory/InventorySources/InventorySourceList.js:193
#: util/getRelatedResourceDeleteDetails.js:66
#: util/getRelatedResourceDeleteDetails.js:146
msgid "Inventory Sources"
msgstr ""
-#: components/JobList/JobList.js:208
-#: components/JobList/JobListItem.js:37
+#: components/JobList/JobList.js:212
+#: components/JobList/JobListItem.js:43
#: components/Schedule/ScheduleList/ScheduleListItem.js:36
#: components/Workflow/WorkflowLegend.js:100
-#: screens/Job/JobDetail/JobDetail.js:70
+#: screens/Job/JobDetail/JobDetail.js:65
msgid "Inventory Sync"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:168
+#: screens/Inventory/InventoryList/InventoryList.js:183
msgid "Inventory Type"
msgstr ""
@@ -4437,12 +4575,16 @@ msgstr ""
msgid "Inventory Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:228
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:104
+#: screens/Inventory/InventoryList/InventoryList.js:121
+msgid "Inventory copied successfully"
+msgstr ""
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:241
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108
msgid "Inventory file"
msgstr ""
-#: screens/Inventory/Inventory.js:91
+#: screens/Inventory/Inventory.js:94
msgid "Inventory not found."
msgstr ""
@@ -4454,23 +4596,23 @@ msgstr ""
msgid "Inventory sync failures"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:109
+#: components/DataListToolbar/DataListToolbar.js:110
msgid "Is expanded"
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:111
+#: components/DataListToolbar/DataListToolbar.js:112
msgid "Is not expanded"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:111
+#: screens/Job/JobOutput/JobOutputSearch.js:119
msgid "Item Failed"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:110
+#: screens/Job/JobOutput/JobOutputSearch.js:120
msgid "Item OK"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:112
+#: screens/Job/JobOutput/JobOutputSearch.js:121
msgid "Item Skipped"
msgstr ""
@@ -4484,49 +4626,50 @@ msgid "Items per page"
msgstr ""
#: components/Sparkline/Sparkline.js:28
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:159
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:35
-#: screens/Project/ProjectDetail/ProjectDetail.js:117
-#: screens/Project/ProjectList/ProjectListItem.js:66
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:172
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:36
+#: screens/Project/ProjectDetail/ProjectDetail.js:132
+#: screens/Project/ProjectList/ProjectListItem.js:70
msgid "JOB ID:"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:133
+#: screens/Job/JobOutput/HostEventModal.js:136
msgid "JSON"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:134
+#: screens/Job/JobOutput/HostEventModal.js:137
msgid "JSON tab"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41
+#: screens/Inventory/shared/Inventory.helptext.js:49
msgid "JSON:"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:110
+#: components/Schedule/shared/FrequencyDetailSubform.js:113
msgid "January"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:221
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66
-msgid "Job"
-msgstr ""
+#~ msgid "Job"
+#~ msgstr ""
-#: components/JobList/JobListItem.js:105
-#: screens/Job/JobDetail/JobDetail.js:491
-#: screens/Job/JobOutput/JobOutput.js:800
-#: screens/Job/JobOutput/JobOutput.js:801
+#: components/JobList/JobListItem.js:112
+#: screens/Job/JobDetail/JobDetail.js:581
+#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobOutput/JobOutput.js:791
#: screens/Job/JobOutput/shared/OutputToolbar.js:136
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:88
msgid "Job Cancel Error"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:513
-#: screens/Job/JobOutput/JobOutput.js:789
-#: screens/Job/JobOutput/JobOutput.js:790
+#: screens/Job/JobDetail/JobDetail.js:603
+#: screens/Job/JobOutput/JobOutput.js:779
+#: screens/Job/JobOutput/JobOutput.js:780
msgid "Job Delete Error"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:97
+#: screens/Job/JobDetail/JobDetail.js:184
msgid "Job ID"
msgstr ""
@@ -4534,45 +4677,45 @@ msgstr ""
msgid "Job Runs"
msgstr ""
-#: components/JobList/JobListItem.js:294
-#: screens/Job/JobDetail/JobDetail.js:293
+#: components/JobList/JobListItem.js:313
+#: screens/Job/JobDetail/JobDetail.js:369
msgid "Job Slice"
msgstr ""
-#: components/JobList/JobListItem.js:299
-#: screens/Job/JobDetail/JobDetail.js:300
+#: components/JobList/JobListItem.js:318
+#: screens/Job/JobDetail/JobDetail.js:377
msgid "Job Slice Parent"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:160
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
-#: screens/Template/shared/JobTemplateForm.js:478
+#: components/PromptDetail/PromptJobTemplateDetail.js:153
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:282
+#: screens/Template/shared/JobTemplateForm.js:435
msgid "Job Slicing"
msgstr ""
-#: components/Workflow/WorkflowNodeHelp.js:162
+#: components/Workflow/WorkflowNodeHelp.js:164
msgid "Job Status"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:56
#: components/LaunchPrompt/steps/OtherPromptsStep.js:57
-#: components/PromptDetail/PromptDetail.js:235
-#: components/PromptDetail/PromptJobTemplateDetail.js:248
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:353
-#: screens/Job/JobDetail/JobDetail.js:372
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418
-#: screens/Template/shared/JobTemplateForm.js:519
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/PromptDetail/PromptDetail.js:228
+#: components/PromptDetail/PromptJobTemplateDetail.js:241
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:346
+#: screens/Job/JobDetail/JobDetail.js:458
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:434
+#: screens/Template/shared/JobTemplateForm.js:469
msgid "Job Tags"
msgstr ""
-#: components/JobList/JobListItem.js:172
-#: components/TemplateList/TemplateList.js:202
+#: components/JobList/JobListItem.js:191
+#: components/TemplateList/TemplateList.js:217
#: components/Workflow/WorkflowLegend.js:92
#: components/Workflow/WorkflowNodeHelp.js:59
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:97
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
-#: screens/Job/JobDetail/JobDetail.js:123
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:93
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:19
+#: screens/Job/JobDetail/JobDetail.js:213
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:79
msgid "Job Template"
msgstr ""
@@ -4580,8 +4723,13 @@ msgstr ""
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.js:115
-#: screens/Project/Projects.js:31
+#: screens/Credential/Credential.js:79
+#: screens/Credential/Credentials.js:30
+#: screens/Inventory/Inventories.js:62
+#: screens/Inventory/Inventory.js:74
+#: screens/Inventory/SmartInventory.js:74
+#: screens/Project/Project.js:107
+#: screens/Project/Projects.js:29
#: util/getRelatedResourceDeleteDetails.js:55
#: util/getRelatedResourceDeleteDetails.js:100
#: util/getRelatedResourceDeleteDetails.js:132
@@ -4596,15 +4744,15 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
-#: components/JobList/JobList.js:204
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:110
-#: components/PromptDetail/PromptDetail.js:183
-#: components/PromptDetail/PromptJobTemplateDetail.js:107
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:293
-#: screens/Job/JobDetail/JobDetail.js:157
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:137
-#: screens/Template/shared/JobTemplateForm.js:250
+#: components/JobList/JobList.js:208
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:111
+#: components/PromptDetail/PromptDetail.js:176
+#: components/PromptDetail/PromptJobTemplateDetail.js:100
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:286
+#: screens/Job/JobDetail/JobDetail.js:247
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:139
+#: screens/Template/shared/JobTemplateForm.js:252
msgid "Job Type"
msgstr ""
@@ -4616,35 +4764,35 @@ msgstr ""
msgid "Job status graph tab"
msgstr ""
+#: components/RelatedTemplateList/RelatedTemplateList.js:156
+#: components/RelatedTemplateList/RelatedTemplateList.js:206
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:117
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:149
msgid "Job templates"
msgstr ""
-#: components/JobList/JobList.js:187
-#: components/JobList/JobList.js:270
-#: routeConfig.js:38
-#: screens/ActivityStream/ActivityStream.js:142
+#: components/JobList/JobList.js:191
+#: components/JobList/JobList.js:274
+#: routeConfig.js:39
+#: screens/ActivityStream/ActivityStream.js:150
#: screens/Dashboard/shared/LineChart.js:64
-#: screens/Host/Host.js:72
-#: screens/Host/Hosts.js:31
-#: screens/InstanceGroup/ContainerGroup.js:80
-#: screens/InstanceGroup/InstanceGroup.js:91
-#: screens/InstanceGroup/InstanceGroups.js:55
-#: screens/InstanceGroup/InstanceGroups.js:60
-#: screens/Inventory/Inventories.js:59
-#: screens/Inventory/Inventories.js:68
-#: screens/Inventory/Inventory.js:68
+#: screens/Host/Host.js:73
+#: screens/Host/Hosts.js:30
+#: screens/InstanceGroup/ContainerGroup.js:71
+#: screens/InstanceGroup/InstanceGroup.js:79
+#: screens/InstanceGroup/InstanceGroups.js:63
+#: screens/InstanceGroup/InstanceGroups.js:68
+#: screens/Inventory/Inventories.js:60
+#: screens/Inventory/Inventories.js:70
+#: screens/Inventory/Inventory.js:70
#: screens/Inventory/InventoryHost/InventoryHost.js:88
-#: screens/Inventory/SmartInventory.js:69
-#: screens/Job/Jobs.js:21
-#: screens/Job/Jobs.js:31
+#: screens/Inventory/SmartInventory.js:70
+#: screens/Job/Jobs.js:22
+#: screens/Job/Jobs.js:32
#: screens/Setting/SettingList.js:87
#: screens/Setting/Settings.js:71
-#: screens/Template/Template.js:154
-#: screens/Template/Templates.js:46
-#: screens/Template/WorkflowJobTemplate.js:140
+#: screens/Template/Template.js:155
+#: screens/Template/Templates.js:47
+#: screens/Template/WorkflowJobTemplate.js:141
msgid "Jobs"
msgstr ""
@@ -4652,27 +4800,27 @@ msgstr ""
msgid "Jobs settings"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:140
+#: components/Schedule/shared/FrequencyDetailSubform.js:143
msgid "July"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:135
+#: components/Schedule/shared/FrequencyDetailSubform.js:138
msgid "June"
msgstr ""
-#: components/Search/AdvancedSearch.js:162
+#: components/Search/AdvancedSearch.js:262
msgid "Key"
msgstr ""
-#: components/Search/AdvancedSearch.js:153
+#: components/Search/AdvancedSearch.js:253
msgid "Key select"
msgstr ""
-#: components/Search/AdvancedSearch.js:156
+#: components/Search/AdvancedSearch.js:256
msgid "Key typeahead"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:230
+#: screens/ActivityStream/ActivityStream.js:238
msgid "Keyword"
msgstr ""
@@ -4729,41 +4877,45 @@ msgstr ""
msgid "LDAP5"
msgstr ""
-#: components/TemplateList/TemplateList.js:219
+#: components/RelatedTemplateList/RelatedTemplateList.js:178
+#: components/TemplateList/TemplateList.js:234
msgid "Label"
msgstr ""
-#: components/JobList/JobList.js:200
+#: components/JobList/JobList.js:204
msgid "Label Name"
msgstr ""
-#: components/JobList/JobListItem.js:264
-#: components/PromptDetail/PromptJobTemplateDetail.js:210
+#: components/JobList/JobListItem.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:203
#: components/PromptDetail/PromptWFJobTemplateDetail.js:114
-#: components/TemplateList/TemplateListItem.js:344
-#: screens/Job/JobDetail/JobDetail.js:352
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:372
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:188
-#: screens/Template/shared/JobTemplateForm.js:391
-#: screens/Template/shared/WorkflowJobTemplateForm.js:191
+#: components/TemplateList/TemplateListItem.js:345
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:110
+#: screens/Inventory/shared/InventoryForm.js:75
+#: screens/Job/JobDetail/JobDetail.js:437
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:386
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:208
+#: screens/Template/shared/JobTemplateForm.js:379
+#: screens/Template/shared/WorkflowJobTemplateForm.js:189
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:315
msgid "Labels"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:407
+#: components/Schedule/shared/FrequencyDetailSubform.js:410
msgid "Last"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:209
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:213
#: screens/InstanceGroup/Instances/InstanceListItem.js:133
#: screens/InstanceGroup/Instances/InstanceListItem.js:208
-#: screens/Instances/InstanceDetail/InstanceDetail.js:160
+#: screens/Instances/InstanceDetail/InstanceDetail.js:164
#: screens/Instances/InstanceList/InstanceListItem.js:138
#: screens/Instances/InstanceList/InstanceListItem.js:223
msgid "Last Health Check"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185
-#: screens/Project/ProjectDetail/ProjectDetail.js:142
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:198
+#: screens/Project/ProjectDetail/ProjectDetail.js:160
msgid "Last Job Status"
msgstr ""
@@ -4771,36 +4923,36 @@ msgstr ""
msgid "Last Login"
msgstr ""
-#: components/PromptDetail/PromptDetail.js:159
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
-#: components/TemplateList/TemplateListItem.js:314
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:101
+#: components/PromptDetail/PromptDetail.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275
+#: components/TemplateList/TemplateListItem.js:315
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:105
#: screens/Application/ApplicationsList/ApplicationListItem.js:45
#: screens/Application/ApplicationsList/ApplicationsList.js:159
-#: screens/Credential/CredentialDetail/CredentialDetail.js:253
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:104
-#: screens/Host/HostDetail/HostDetail.js:86
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:71
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:100
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:117
+#: screens/Credential/CredentialDetail/CredentialDetail.js:263
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:95
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:107
+#: screens/Host/HostDetail/HostDetail.js:87
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:98
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:139
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:45
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:85
-#: screens/Job/JobDetail/JobDetail.js:431
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:110
-#: screens/Project/ProjectDetail/ProjectDetail.js:236
+#: screens/Job/JobDetail/JobDetail.js:520
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:393
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:120
+#: screens/Project/ProjectDetail/ProjectDetail.js:279
#: screens/Team/TeamDetail/TeamDetail.js:48
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:332
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:344
#: screens/User/UserDetail/UserDetail.js:84
-#: screens/User/UserTokenDetail/UserTokenDetail.js:62
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:155
+#: screens/User/UserTokenDetail/UserTokenDetail.js:65
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:245
msgid "Last Modified"
msgstr ""
-#: components/AddRole/AddResourceRole.js:31
-#: components/AddRole/AddResourceRole.js:45
-#: components/ResourceAccessList/ResourceAccessList.js:138
+#: components/AddRole/AddResourceRole.js:32
+#: components/AddRole/AddResourceRole.js:46
+#: components/ResourceAccessList/ResourceAccessList.js:182
#: screens/User/UserDetail/UserDetail.js:65
#: screens/User/UserList/UserList.js:128
#: screens/User/UserList/UserList.js:162
@@ -4809,32 +4961,32 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.js:229
-#: components/TemplateList/TemplateListItem.js:180
+#: components/TemplateList/TemplateList.js:245
+#: components/TemplateList/TemplateListItem.js:194
msgid "Last Ran"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:269
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:262
msgid "Last Run"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:109
+#: components/Lookup/HostFilterLookup.js:119
msgid "Last job"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:264
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:296
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:153
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:50
-#: screens/Project/ProjectList/ProjectListItem.js:295
+#: screens/Project/ProjectList/ProjectListItem.js:308
msgid "Last modified"
msgstr ""
-#: components/ResourceAccessList/ResourceAccessList.js:184
+#: components/ResourceAccessList/ResourceAccessList.js:228
#: components/ResourceAccessList/ResourceAccessListItem.js:68
msgid "Last name"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:300
+#: screens/Project/ProjectList/ProjectListItem.js:313
msgid "Last used"
msgstr ""
@@ -4842,19 +4994,18 @@ msgstr ""
#: components/LaunchPrompt/steps/usePreviewStep.js:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:493
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:225
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:234
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:503
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:512
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256
msgid "Launch"
msgstr ""
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74
-msgid "Launch Management Job"
-msgstr ""
+#~ msgid "Launch Management Job"
+#~ msgstr ""
-#: components/TemplateList/TemplateListItem.js:200
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:85
+#: components/TemplateList/TemplateListItem.js:214
msgid "Launch Template"
msgstr ""
@@ -4867,7 +5018,7 @@ msgstr ""
msgid "Launch management job"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:208
+#: components/TemplateList/TemplateListItem.js:222
msgid "Launch template"
msgstr ""
@@ -4880,24 +5031,30 @@ msgstr ""
msgid "Launch | {0}"
msgstr ""
-#: components/DetailList/LaunchedByDetail.js:83
+#: components/DetailList/LaunchedByDetail.js:54
msgid "Launched By"
msgstr ""
-#: components/JobList/JobList.js:216
+#: components/JobList/JobList.js:220
msgid "Launched By (Username)"
msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
-msgid "Learn more about Insights for Ansible Automation Platform"
+msgid "Learn more about Automation Analytics"
msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:67
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120
+#~ msgid "Learn more about Insights for Ansible Automation Platform"
+#~ msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:68
msgid "Leave this field blank to make the execution environment globally available."
msgstr ""
#: components/Workflow/WorkflowLegend.js:86
#: screens/Metrics/LineChart.js:120
+#: screens/TopologyView/Header.js:102
+#: screens/TopologyView/Legend.js:65
msgid "Legend"
msgstr ""
@@ -4909,19 +5066,20 @@ msgstr ""
msgid "Less than or equal to comparison."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:156
-#: components/AdHocCommands/AdHocDetailsStep.js:157
-#: components/JobList/JobList.js:234
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:35
-#: components/PromptDetail/PromptDetail.js:223
-#: components/PromptDetail/PromptJobTemplateDetail.js:155
+#: components/AdHocCommands/AdHocDetailsStep.js:140
+#: components/AdHocCommands/AdHocDetailsStep.js:141
+#: components/JobList/JobList.js:238
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/PromptDetail/PromptDetail.js:216
+#: components/PromptDetail/PromptJobTemplateDetail.js:148
#: components/PromptDetail/PromptWFJobTemplateDetail.js:88
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:321
-#: screens/Job/JobDetail/JobDetail.js:257
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:259
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:147
-#: screens/Template/shared/JobTemplateForm.js:440
-#: screens/Template/shared/WorkflowJobTemplateForm.js:152
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:314
+#: screens/Job/JobDetail/JobDetail.js:320
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:258
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:152
+#: screens/Template/shared/JobTemplateForm.js:408
+#: screens/Template/shared/WorkflowJobTemplateForm.js:153
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:279
msgid "Limit"
msgstr ""
@@ -4937,15 +5095,15 @@ msgstr ""
msgid "Local"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:270
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263
msgid "Local Time Zone"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:130
+#: components/Schedule/shared/ScheduleForm.js:132
msgid "Local time zone"
msgstr ""
-#: screens/Login/Login.js:174
+#: screens/Login/Login.js:195
msgid "Log In"
msgstr ""
@@ -4963,8 +5121,8 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:340
-#: components/Lookup/Lookup.js:180
+#: components/Lookup/HostFilterLookup.js:366
+#: components/Lookup/Lookup.js:181
msgid "Lookup modal"
msgstr ""
@@ -4980,45 +5138,45 @@ msgstr ""
msgid "Lookup typeahead"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:157
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:33
-#: screens/Project/ProjectDetail/ProjectDetail.js:115
-#: screens/Project/ProjectList/ProjectListItem.js:64
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:170
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:34
+#: screens/Project/ProjectDetail/ProjectDetail.js:130
+#: screens/Project/ProjectList/ProjectListItem.js:68
msgid "MOST RECENT SYNC"
msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:97
#: components/AdHocCommands/AdHocCredentialStep.js:98
#: components/AdHocCommands/AdHocCredentialStep.js:112
-#: screens/Job/JobDetail/JobDetail.js:308
+#: screens/Job/JobDetail/JobDetail.js:392
msgid "Machine Credential"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:62
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64
msgid "Managed"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:169
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.js:211
-#: components/JobList/JobListItem.js:40
+#: components/JobList/JobList.js:215
+#: components/JobList/JobListItem.js:46
#: components/Schedule/ScheduleList/ScheduleListItem.js:39
#: components/Workflow/WorkflowLegend.js:108
#: components/Workflow/WorkflowNodeHelp.js:79
-#: screens/Job/JobDetail/JobDetail.js:73
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:105
+#: screens/Job/JobDetail/JobDetail.js:68
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:102
msgid "Management Job"
msgstr ""
-#: routeConfig.js:126
+#: routeConfig.js:127
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:84
msgid "Management Jobs"
msgstr ""
-#: screens/ManagementJob/ManagementJobs.js:21
+#: screens/ManagementJob/ManagementJobs.js:20
msgid "Management job"
msgstr ""
@@ -5027,11 +5185,11 @@ msgstr ""
msgid "Management job launch error"
msgstr ""
-#: screens/ManagementJob/ManagementJob.js:132
+#: screens/ManagementJob/ManagementJob.js:133
msgid "Management job not found."
msgstr ""
-#: screens/ManagementJob/ManagementJobs.js:14
+#: screens/ManagementJob/ManagementJobs.js:13
msgid "Management jobs"
msgstr ""
@@ -5039,40 +5197,41 @@ msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:98
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:204
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:208
#: screens/InstanceGroup/Instances/InstanceListItem.js:204
-#: screens/Instances/InstanceDetail/InstanceDetail.js:155
+#: screens/Instances/InstanceDetail/InstanceDetail.js:159
#: screens/Instances/InstanceList/InstanceListItem.js:219
-#: screens/Project/ProjectDetail/ProjectDetail.js:173
-#: screens/Project/ProjectList/ProjectList.js:183
-#: screens/Project/ProjectList/ProjectListItem.js:206
+#: screens/Job/JobDetail/JobDetail.js:73
+#: screens/Project/ProjectDetail/ProjectDetail.js:191
+#: screens/Project/ProjectList/ProjectList.js:197
+#: screens/Project/ProjectList/ProjectListItem.js:219
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:96
msgid "Manual"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:120
+#: components/Schedule/shared/FrequencyDetailSubform.js:123
msgid "March"
msgstr ""
#: components/NotificationList/NotificationList.js:197
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138
msgid "Mattermost"
msgstr ""
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:98
#: screens/Organization/shared/OrganizationForm.js:71
msgid "Max Hosts"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:214
+#: screens/Template/Survey/SurveyQuestionForm.js:220
msgid "Maximum"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:198
+#: screens/Template/Survey/SurveyQuestionForm.js:204
msgid "Maximum length"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:130
+#: components/Schedule/shared/FrequencyDetailSubform.js:133
msgid "May"
msgstr ""
@@ -5097,27 +5256,29 @@ msgstr ""
msgid "Microsoft Azure Resource Manager"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:208
+#: screens/Template/Survey/SurveyQuestionForm.js:214
msgid "Minimum"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:192
+#: screens/Template/Survey/SurveyQuestionForm.js:198
msgid "Minimum length"
msgstr ""
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:49
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:31
msgid ""
"Minimum number of instances that will be automatically\n"
"assigned to this group when new instances come online."
msgstr ""
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:59
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:71
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:41
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.js:152
+#: components/Schedule/shared/ScheduleForm.js:154
msgid "Minute"
msgstr ""
@@ -5138,23 +5299,23 @@ msgid "Miscellaneous System settings"
msgstr ""
#: components/Workflow/WorkflowNodeHelp.js:120
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:86
msgid "Missing"
msgstr ""
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:65
-#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:107
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:66
+#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109
msgid "Missing resource"
msgstr ""
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:178
-#: screens/User/UserTokenList/UserTokenList.js:150
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193
+#: screens/User/UserTokenList/UserTokenList.js:154
msgid "Modified"
msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:126
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:116
-#: components/AddRole/AddResourceRole.js:60
+#: components/AddRole/AddResourceRole.js:61
#: components/AssociateModal/AssociateModal.js:148
#: components/LaunchPrompt/steps/CredentialsStep.js:177
#: components/LaunchPrompt/steps/InventoryStep.js:93
@@ -5165,30 +5326,30 @@ msgstr ""
#: components/Lookup/OrganizationLookup.js:137
#: components/Lookup/ProjectLookup.js:146
#: components/NotificationList/NotificationList.js:210
+#: components/RelatedTemplateList/RelatedTemplateList.js:170
#: components/Schedule/ScheduleList/ScheduleList.js:201
-#: components/TemplateList/TemplateList.js:215
+#: components/TemplateList/TemplateList.js:230
#: 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.js:139
+#: screens/Credential/CredentialList/CredentialList.js:154
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:100
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:106
#: screens/Host/HostGroups/HostGroupsList.js:168
-#: screens/Host/HostList/HostList.js:153
+#: screens/Host/HostList/HostList.js:161
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:203
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:178
#: screens/Inventory/InventoryHosts/InventoryHostList.js:132
-#: screens/Inventory/InventoryList/InventoryList.js:188
+#: screens/Inventory/InventoryList/InventoryList.js:203
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:189
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:98
#: screens/Organization/OrganizationList/OrganizationList.js:135
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131
-#: screens/Project/ProjectList/ProjectList.js:195
+#: screens/Project/ProjectList/ProjectList.js:209
#: screens/Team/TeamList/TeamList.js:134
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:167
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:108
@@ -5196,39 +5357,39 @@ msgstr ""
msgid "Modified By (Username)"
msgstr ""
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:77
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:85
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:151
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:77
msgid "Modified by (username)"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:58
-#: screens/Job/JobOutput/HostEventModal.js:122
+#: components/AdHocCommands/AdHocDetailsStep.js:59
+#: screens/Job/JobOutput/HostEventModal.js:125
msgid "Module"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:423
+#: screens/Job/JobDetail/JobDetail.js:512
msgid "Module Arguments"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:418
+#: screens/Job/JobDetail/JobDetail.js:506
msgid "Module Name"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:256
+#: components/Schedule/shared/FrequencyDetailSubform.js:259
msgid "Mon"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:261
-#: components/Schedule/shared/FrequencyDetailSubform.js:423
+#: components/Schedule/shared/FrequencyDetailSubform.js:264
+#: components/Schedule/shared/FrequencyDetailSubform.js:426
msgid "Monday"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:156
+#: components/Schedule/shared/ScheduleForm.js:158
msgid "Month"
msgstr ""
-#: components/Popover/Popover.js:30
+#: components/Popover/Popover.js:32
msgid "More information"
msgstr ""
@@ -5236,13 +5397,13 @@ msgstr ""
msgid "More information for"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:152
-#: screens/Template/Survey/SurveyReorderModal.js:153
+#: screens/Template/Survey/SurveyReorderModal.js:162
+#: screens/Template/Survey/SurveyReorderModal.js:163
msgid "Multi-Select"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:136
-#: screens/Template/Survey/SurveyReorderModal.js:137
+#: screens/Template/Survey/SurveyReorderModal.js:146
+#: screens/Template/Survey/SurveyReorderModal.js:147
msgid "Multiple Choice"
msgstr ""
@@ -5254,7 +5415,7 @@ msgstr ""
msgid "Multiple Choice (single select)"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:252
+#: screens/Template/Survey/SurveyQuestionForm.js:258
msgid "Multiple Choice Options"
msgstr ""
@@ -5262,14 +5423,14 @@ msgstr ""
#: components/AdHocCommands/AdHocCredentialStep.js:132
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:107
#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:122
-#: components/AddRole/AddResourceRole.js:51
-#: components/AddRole/AddResourceRole.js:67
+#: components/AddRole/AddResourceRole.js:52
+#: components/AddRole/AddResourceRole.js:68
#: components/AssociateModal/AssociateModal.js:139
#: components/AssociateModal/AssociateModal.js:154
#: components/HostForm/HostForm.js:96
-#: components/JobList/JobList.js:191
-#: components/JobList/JobList.js:240
-#: components/JobList/JobListItem.js:79
+#: components/JobList/JobList.js:195
+#: components/JobList/JobList.js:244
+#: components/JobList/JobListItem.js:86
#: components/LaunchPrompt/steps/CredentialsStep.js:168
#: components/LaunchPrompt/steps/CredentialsStep.js:183
#: components/LaunchPrompt/steps/InventoryStep.js:84
@@ -5280,8 +5441,8 @@ msgstr ""
#: components/Lookup/CredentialLookup.js:203
#: components/Lookup/ExecutionEnvironmentLookup.js:172
#: components/Lookup/ExecutionEnvironmentLookup.js:179
-#: components/Lookup/HostFilterLookup.js:83
-#: components/Lookup/HostFilterLookup.js:375
+#: components/Lookup/HostFilterLookup.js:93
+#: components/Lookup/HostFilterLookup.js:421
#: components/Lookup/HostListItem.js:8
#: components/Lookup/InstanceGroupsLookup.js:103
#: components/Lookup/InstanceGroupsLookup.js:114
@@ -5300,16 +5461,18 @@ msgstr ""
#: components/NotificationList/NotificationListItem.js:28
#: components/OptionsList/OptionsList.js:57
#: components/PaginatedTable/PaginatedTable.js:72
-#: components/PromptDetail/PromptDetail.js:112
+#: components/PromptDetail/PromptDetail.js:105
+#: components/RelatedTemplateList/RelatedTemplateList.js:161
+#: components/RelatedTemplateList/RelatedTemplateList.js:186
#: components/ResourceAccessList/ResourceAccessListItem.js:58
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252
#: components/Schedule/ScheduleList/ScheduleList.js:168
#: components/Schedule/ScheduleList/ScheduleList.js:188
#: components/Schedule/ScheduleList/ScheduleListItem.js:80
-#: components/Schedule/shared/ScheduleForm.js:105
-#: components/TemplateList/TemplateList.js:190
-#: components/TemplateList/TemplateList.js:227
-#: components/TemplateList/TemplateListItem.js:137
+#: components/Schedule/shared/ScheduleForm.js:107
+#: components/TemplateList/TemplateList.js:205
+#: components/TemplateList/TemplateList.js:242
+#: components/TemplateList/TemplateListItem.js:142
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49
@@ -5322,19 +5485,19 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:58
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:59
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:135
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28
-#: screens/Application/Applications.js:78
+#: screens/Application/Applications.js:81
#: screens/Application/ApplicationsList/ApplicationListItem.js:33
#: screens/Application/ApplicationsList/ApplicationsList.js:118
#: screens/Application/ApplicationsList/ApplicationsList.js:155
-#: screens/Application/shared/ApplicationForm.js:52
-#: screens/Credential/CredentialDetail/CredentialDetail.js:207
-#: screens/Credential/CredentialList/CredentialList.js:126
-#: screens/Credential/CredentialList/CredentialList.js:145
-#: screens/Credential/CredentialList/CredentialListItem.js:55
+#: screens/Application/shared/ApplicationForm.js:53
+#: screens/Credential/CredentialDetail/CredentialDetail.js:217
+#: screens/Credential/CredentialList/CredentialList.js:141
+#: screens/Credential/CredentialList/CredentialList.js:164
+#: screens/Credential/CredentialList/CredentialListItem.js:58
#: screens/Credential/shared/CredentialForm.js:161
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:71
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:91
@@ -5343,34 +5506,33 @@ msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:176
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:33
#: screens/CredentialType/shared/CredentialTypeForm.js:21
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:47
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:151
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:61
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:136
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:165
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:89
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:115
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:87
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:88
#: screens/Host/HostDetail/HostDetail.js:69
#: screens/Host/HostGroups/HostGroupItem.js:28
#: screens/Host/HostGroups/HostGroupsList.js:159
#: screens/Host/HostGroups/HostGroupsList.js:176
-#: screens/Host/HostList/HostList.js:140
-#: screens/Host/HostList/HostList.js:161
+#: screens/Host/HostList/HostList.js:148
+#: screens/Host/HostList/HostList.js:169
#: screens/Host/HostList/HostListItem.js:50
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:41
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:250
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:284
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:49
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:208
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61
-#: screens/InstanceGroup/Instances/InstanceList.js:189
-#: screens/InstanceGroup/Instances/InstanceList.js:205
-#: screens/InstanceGroup/Instances/InstanceList.js:254
-#: screens/InstanceGroup/Instances/InstanceList.js:287
+#: screens/InstanceGroup/Instances/InstanceList.js:188
+#: screens/InstanceGroup/Instances/InstanceList.js:204
+#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: screens/InstanceGroup/Instances/InstanceList.js:288
#: screens/InstanceGroup/Instances/InstanceListItem.js:124
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:46
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:25
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:44
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:19
#: screens/Instances/InstanceList/InstanceList.js:108
#: screens/Instances/InstanceList/InstanceList.js:125
#: screens/Instances/InstanceList/InstanceList.js:150
@@ -5390,22 +5552,22 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33
#: screens/Inventory/InventoryHosts/InventoryHostList.js:119
#: screens/Inventory/InventoryHosts/InventoryHostList.js:138
-#: screens/Inventory/InventoryList/InventoryList.js:163
-#: screens/Inventory/InventoryList/InventoryList.js:194
-#: screens/Inventory/InventoryList/InventoryList.js:203
-#: screens/Inventory/InventoryList/InventoryListItem.js:88
+#: screens/Inventory/InventoryList/InventoryList.js:178
+#: screens/Inventory/InventoryList/InventoryList.js:209
+#: screens/Inventory/InventoryList/InventoryList.js:218
+#: screens/Inventory/InventoryList/InventoryListItem.js:92
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:195
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:232
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183
-#: screens/Inventory/InventorySources/InventorySourceList.js:212
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:69
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:97
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:196
+#: screens/Inventory/InventorySources/InventorySourceList.js:211
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:71
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:68
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:102
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:76
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:111
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33
-#: screens/Inventory/shared/InventoryForm.js:32
+#: screens/Inventory/shared/InventoryForm.js:42
#: screens/Inventory/shared/InventoryGroupForm.js:32
#: screens/Inventory/shared/InventorySourceForm.js:101
#: screens/Inventory/shared/SmartInventoryForm.js:47
@@ -5413,8 +5575,8 @@ msgstr ""
#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:106
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:193
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:122
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:178
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:112
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41
#: screens/Organization/OrganizationDetail/OrganizationDetail.js:91
@@ -5428,43 +5590,40 @@ msgstr ""
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:85
#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14
#: screens/Organization/shared/OrganizationForm.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:157
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:122
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:156
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:56
-#: screens/Project/ProjectList/ProjectList.js:171
-#: screens/Project/ProjectList/ProjectList.js:207
-#: screens/Project/ProjectList/ProjectListItem.js:174
-#: screens/Project/shared/ProjectForm.js:169
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:145
+#: screens/Project/ProjectDetail/ProjectDetail.js:175
+#: screens/Project/ProjectList/ProjectList.js:185
+#: screens/Project/ProjectList/ProjectList.js:221
+#: screens/Project/ProjectList/ProjectListItem.js:179
+#: screens/Project/shared/ProjectForm.js:170
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:146
#: screens/Team/TeamDetail/TeamDetail.js:37
#: screens/Team/TeamList/TeamList.js:117
#: screens/Team/TeamList/TeamList.js:142
#: screens/Team/TeamList/TeamListItem.js:33
#: screens/Team/shared/TeamForm.js:29
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:185
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:178
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyList.js:102
#: screens/Template/Survey/SurveyListItem.js:39
-#: screens/Template/Survey/SurveyReorderModal.js:208
-#: screens/Template/Survey/SurveyReorderModal.js:208
-#: screens/Template/Survey/SurveyReorderModal.js:228
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:110
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:218
+#: screens/Template/Survey/SurveyReorderModal.js:238
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:69
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:122
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:154
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:169
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:178
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:68
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:88
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:74
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/SystemJobTemplatesList.js:94
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:75
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:95
-#: screens/Template/shared/JobTemplateForm.js:237
-#: screens/Template/shared/WorkflowJobTemplateForm.js:103
-#: screens/User/UserOrganizations/UserOrganizationList.js:76
-#: screens/User/UserOrganizations/UserOrganizationList.js:80
+#: screens/Template/shared/JobTemplateForm.js:239
+#: screens/Template/shared/WorkflowJobTemplateForm.js:104
+#: screens/User/UserOrganizations/UserOrganizationList.js:75
+#: screens/User/UserOrganizations/UserOrganizationList.js:79
#: screens/User/UserOrganizations/UserOrganizationListItem.js:13
#: screens/User/UserRoles/UserRolesList.js:155
#: screens/User/UserRoles/UserRolesListItem.js:12
@@ -5472,24 +5631,24 @@ msgstr ""
#: screens/User/UserTeams/UserTeamList.js:232
#: screens/User/UserTeams/UserTeamListItem.js:18
#: screens/User/UserTokenList/UserTokenListItem.js:22
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:76
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:220
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:181
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:251
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34
msgid "Name"
msgstr ""
#: screens/InstanceGroup/shared/InstanceGroupForm.js:21
-msgid "Name cannot be changed on this Instance Group"
-msgstr ""
+#~ msgid "Name cannot be changed on this Instance Group"
+#~ msgstr ""
#: components/AppContainer/AppContainer.js:95
msgid "Navigation"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:502
+#: components/Schedule/shared/FrequencyDetailSubform.js:505
#: screens/Dashboard/shared/ChartTooltip.js:106
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:91
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:57
msgid "Never"
msgstr ""
@@ -5497,22 +5656,21 @@ msgstr ""
msgid "Never Updated"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12
+#: screens/WorkflowApproval/shared/WorkflowApprovalUtils.js:47
msgid "Never expires"
msgstr ""
-#: components/JobList/JobList.js:223
+#: components/JobList/JobList.js:227
#: components/Workflow/WorkflowNodeHelp.js:90
msgid "New"
msgstr ""
-#: components/AdHocCommands/AdHocCommandsWizard.js:54
+#: components/AdHocCommands/AdHocCommandsWizard.js:52
#: components/AdHocCommands/useAdHocCredentialStep.js:29
-#: components/AdHocCommands/useAdHocDetailsStep.js:49
+#: components/AdHocCommands/useAdHocDetailsStep.js:40
#: components/AdHocCommands/useAdHocExecutionEnvironmentStep.js:22
-#: components/AddRole/AddResourceRole.js:215
-#: components/AddRole/AddResourceRole.js:250
+#: components/AddRole/AddResourceRole.js:196
+#: components/AddRole/AddResourceRole.js:231
#: components/LaunchPrompt/LaunchPrompt.js:130
#: components/Schedule/shared/SchedulePromptableFields.js:134
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
@@ -5521,27 +5679,27 @@ msgstr ""
msgid "Next"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:266
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259
#: components/Schedule/ScheduleList/ScheduleList.js:170
#: components/Schedule/ScheduleList/ScheduleListItem.js:104
#: components/Schedule/ScheduleList/ScheduleListItem.js:108
msgid "Next Run"
msgstr ""
-#: components/Search/Search.js:214
+#: components/Search/Search.js:232
msgid "No"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:118
+#: screens/Job/JobOutput/JobOutputSearch.js:122
msgid "No Hosts Matched"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:106
-#: screens/Job/JobOutput/JobOutputSearch.js:119
+#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:124
msgid "No Hosts Remaining"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:147
+#: screens/Job/JobOutput/HostEventModal.js:150
msgid "No JSON Available"
msgstr ""
@@ -5550,53 +5708,57 @@ msgid "No Jobs"
msgstr ""
#: screens/Job/JobOutput/HostEventModal.js:185
-msgid "No Standard Error Available"
-msgstr ""
+#~ msgid "No Standard Error Available"
+#~ msgstr ""
#: screens/Job/JobOutput/HostEventModal.js:166
-msgid "No Standard Out Available"
-msgstr ""
+#~ msgid "No Standard Out Available"
+#~ msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:68
+#: screens/Inventory/InventoryList/InventoryListItem.js:72
msgid "No inventory sync failures."
msgstr ""
-#: components/ContentEmpty/ContentEmpty.js:16
+#: components/ContentEmpty/ContentEmpty.js:20
msgid "No items found."
msgstr ""
-#: screens/Host/HostList/HostListItem.js:94
+#: screens/Host/HostList/HostListItem.js:100
msgid "No job data available"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:123
+#: screens/Job/JobOutput/EmptyOutput.js:25
+msgid "No output found for this job."
+msgstr ""
+
+#: screens/Job/JobOutput/HostEventModal.js:126
msgid "No result found"
msgstr ""
+#: components/LabelSelect/LabelSelect.js:102
#: components/LaunchPrompt/steps/SurveyStep.js:134
#: components/LaunchPrompt/steps/SurveyStep.js:193
#: components/MultiSelect/TagMultiSelect.js:60
-#: components/Search/AdvancedSearch.js:114
-#: components/Search/AdvancedSearch.js:167
+#: components/Search/AdvancedSearch.js:151
+#: components/Search/AdvancedSearch.js:266
#: components/Search/LookupTypeInput.js:33
#: components/Search/RelatedLookupTypeInput.js:26
-#: components/Search/Search.js:137
-#: components/Search/Search.js:184
-#: components/Search/Search.js:208
-#: screens/ActivityStream/ActivityStream.js:134
+#: components/Search/Search.js:153
+#: components/Search/Search.js:202
+#: components/Search/Search.js:226
+#: screens/ActivityStream/ActivityStream.js:142
#: screens/Credential/shared/CredentialForm.js:143
#: screens/Credential/shared/CredentialFormFields/BecomeMethodField.js:65
#: screens/Dashboard/DashboardGraph.js:106
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:138
-#: screens/Template/Survey/SurveyReorderModal.js:156
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:251
-#: screens/Template/shared/LabelSelect.js:102
-#: screens/Template/shared/PlaybookSelect.js:69
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:136
+#: screens/Template/Survey/SurveyReorderModal.js:166
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:260
+#: screens/Template/shared/PlaybookSelect.js:72
msgid "No results found"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:115
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:136
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:137
msgid "No subscriptions found"
msgstr ""
@@ -5609,22 +5771,22 @@ msgid "No {pluralizedItemName} Found"
msgstr ""
#: components/Workflow/WorkflowNodeHelp.js:148
-#: components/Workflow/WorkflowNodeHelp.js:182
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:264
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:265
+#: components/Workflow/WorkflowNodeHelp.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:273
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:274
msgid "Node Alias"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:212
-#: screens/InstanceGroup/Instances/InstanceList.js:194
-#: screens/InstanceGroup/Instances/InstanceList.js:256
-#: screens/InstanceGroup/Instances/InstanceList.js:288
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:216
+#: screens/InstanceGroup/Instances/InstanceList.js:193
+#: screens/InstanceGroup/Instances/InstanceList.js:257
+#: screens/InstanceGroup/Instances/InstanceList.js:289
#: screens/InstanceGroup/Instances/InstanceListItem.js:142
-#: screens/Instances/InstanceDetail/InstanceDetail.js:150
+#: screens/Instances/InstanceDetail/InstanceDetail.js:154
#: screens/Instances/InstanceList/InstanceList.js:113
#: screens/Instances/InstanceList/InstanceList.js:152
#: screens/Instances/InstanceList/InstanceListItem.js:150
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:72
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:118
msgid "Node Type"
msgstr ""
@@ -5632,15 +5794,19 @@ msgstr ""
msgid "Node type"
msgstr ""
+#: screens/TopologyView/Legend.js:68
+msgid "Node types"
+msgstr ""
+
#: components/Workflow/WorkflowNodeHelp.js:123
msgid "None"
msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:136
msgid "None (Run Once)"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:151
+#: components/Schedule/shared/ScheduleForm.js:153
msgid "None (run once)"
msgstr ""
@@ -5659,11 +5825,11 @@ msgstr ""
msgid "Not configured"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:71
+#: screens/Inventory/InventoryList/InventoryListItem.js:75
msgid "Not configured for inventory sync."
msgstr ""
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:247
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:248
msgid ""
"Note that only hosts directly in this group can\n"
"be disassociated. Hosts in sub-groups must be disassociated\n"
@@ -5687,11 +5853,11 @@ msgstr ""
msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag."
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61
+#: screens/Project/shared/Project.helptext.js:81
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38
+#: screens/Project/shared/Project.helptext.js:35
msgid ""
"Note: When using SSH protocol for GitHub or\n"
"Bitbucket, enter an SSH key only, do not enter a username\n"
@@ -5701,7 +5867,7 @@ msgid ""
"password information."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:319
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326
msgid "Notification Color"
msgstr ""
@@ -5710,11 +5876,11 @@ msgstr ""
msgid "Notification Template not found."
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:190
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:132
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:186
-#: screens/NotificationTemplate/NotificationTemplates.js:13
-#: screens/NotificationTemplate/NotificationTemplates.js:20
+#: screens/ActivityStream/ActivityStream.js:198
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:117
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:171
+#: screens/NotificationTemplate/NotificationTemplates.js:14
+#: screens/NotificationTemplate/NotificationTemplates.js:21
#: util/getRelatedResourceDeleteDetails.js:180
msgid "Notification Templates"
msgstr ""
@@ -5723,48 +5889,48 @@ msgstr ""
msgid "Notification Type"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:383
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
msgid "Notification color"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:245
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:193
msgid "Notification sent successfully"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:433
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444
msgid "Notification test failed."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197
msgid "Notification timed out"
msgstr ""
#: components/NotificationList/NotificationList.js:190
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131
msgid "Notification type"
msgstr ""
#: components/NotificationList/NotificationList.js:177
-#: routeConfig.js:121
-#: screens/Inventory/Inventories.js:91
+#: routeConfig.js:122
+#: screens/Inventory/Inventories.js:93
#: screens/Inventory/InventorySource/InventorySource.js:99
-#: screens/ManagementJob/ManagementJob.js:115
-#: screens/ManagementJob/ManagementJobs.js:23
-#: screens/Organization/Organization.js:134
+#: screens/ManagementJob/ManagementJob.js:116
+#: screens/ManagementJob/ManagementJobs.js:22
+#: screens/Organization/Organization.js:135
#: screens/Organization/Organizations.js:33
-#: screens/Project/Project.js:109
-#: screens/Project/Projects.js:30
-#: screens/Template/Template.js:140
-#: screens/Template/Templates.js:45
-#: screens/Template/WorkflowJobTemplate.js:122
+#: screens/Project/Project.js:114
+#: screens/Project/Projects.js:28
+#: screens/Template/Template.js:141
+#: screens/Template/Templates.js:46
+#: screens/Template/WorkflowJobTemplate.js:123
msgid "Notifications"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:160
+#: components/Schedule/shared/FrequencyDetailSubform.js:163
msgid "November"
msgstr ""
-#: components/StatusLabel/StatusLabel.js:31
+#: components/StatusLabel/StatusLabel.js:36
#: components/Workflow/WorkflowNodeHelp.js:117
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66
#: screens/Job/JobOutput/shared/HostStatusBar.js:35
@@ -5772,69 +5938,75 @@ msgid "OK"
msgstr ""
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42
-#: components/Schedule/shared/FrequencyDetailSubform.js:539
+#: components/Schedule/shared/FrequencyDetailSubform.js:542
msgid "Occurrences"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:155
+#: components/Schedule/shared/FrequencyDetailSubform.js:158
msgid "October"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:205
+#: components/AdHocCommands/AdHocDetailsStep.js:189
#: components/HostToggle/HostToggle.js:61
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:186
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:167
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:58
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:150
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "Off"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:204
+#: components/AdHocCommands/AdHocDetailsStep.js:188
#: components/HostToggle/HostToggle.js:60
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:183
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:185
-#: components/PromptDetail/PromptDetail.js:291
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:325
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:164
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:166
+#: components/PromptDetail/PromptDetail.js:284
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:318
#: components/Schedule/ScheduleToggle/ScheduleToggle.js:57
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:46
#: screens/Setting/shared/SettingDetail.js:98
#: screens/Setting/shared/SharedFields.js:149
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:272
-#: screens/Template/shared/JobTemplateForm.js:504
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:277
+#: screens/Template/shared/JobTemplateForm.js:455
msgid "On"
msgstr ""
#: components/Workflow/WorkflowLegend.js:126
#: components/Workflow/WorkflowLinkHelp.js:30
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:39
msgid "On Failure"
msgstr ""
#: components/Workflow/WorkflowLegend.js:122
#: components/Workflow/WorkflowLinkHelp.js:27
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:32
msgid "On Success"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:526
+#: components/Schedule/shared/FrequencyDetailSubform.js:529
msgid "On date"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:241
+#: components/Schedule/shared/FrequencyDetailSubform.js:244
msgid "On days"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:173
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:18
+msgid ""
+"One Slack channel per line. The pound symbol (#)\n"
+"is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack"
+msgstr ""
+
+#: components/PromptDetail/PromptInventorySourceDetail.js:166
msgid "Only Group By"
msgstr ""
@@ -5842,35 +6014,47 @@ msgstr ""
msgid "OpenStack"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:114
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:107
msgid "Option Details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:394
-#: screens/Template/shared/WorkflowJobTemplateForm.js:194
+#: screens/Inventory/shared/Inventory.helptext.js:25
+msgid ""
+"Optional labels that describe this inventory,\n"
+"such as 'dev' or 'test'. Labels can be used to group and filter\n"
+"inventories and completed jobs."
+msgstr ""
+
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:11
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.js:206
+#: screens/Job/Job.helptext.js:11
+#: screens/Template/shared/JobTemplate.helptext.js:12
+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 ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:25
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:19
msgid "Optionally select the credential to use to send status updates back to the webhook service."
msgstr ""
#: components/NotificationList/NotificationList.js:220
#: components/NotificationList/NotificationListItem.js:34
#: screens/Credential/shared/TypeInputsSubForm.js:47
-#: screens/InstanceGroup/shared/ContainerGroupForm.js:64
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:64
-#: screens/Template/shared/JobTemplateForm.js:551
-#: screens/Template/shared/WorkflowJobTemplateForm.js:218
+#: screens/InstanceGroup/shared/ContainerGroupForm.js:61
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:65
+#: screens/Template/shared/JobTemplateForm.js:493
+#: screens/Template/shared/WorkflowJobTemplateForm.js:210
msgid "Options"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:207
-#: screens/Template/Survey/SurveyReorderModal.js:207
-#: screens/Template/Survey/SurveyReorderModal.js:223
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:217
+#: screens/Template/Survey/SurveyReorderModal.js:233
msgid "Order"
msgstr ""
@@ -5878,39 +6062,40 @@ msgstr ""
#: components/Lookup/OrganizationLookup.js:101
#: components/Lookup/OrganizationLookup.js:107
#: components/Lookup/OrganizationLookup.js:123
-#: components/PromptDetail/PromptInventorySourceDetail.js:80
-#: components/PromptDetail/PromptInventorySourceDetail.js:90
-#: components/PromptDetail/PromptJobTemplateDetail.js:110
-#: components/PromptDetail/PromptJobTemplateDetail.js:120
+#: components/PromptDetail/PromptInventorySourceDetail.js:73
+#: components/PromptDetail/PromptInventorySourceDetail.js:83
+#: components/PromptDetail/PromptJobTemplateDetail.js:103
+#: components/PromptDetail/PromptJobTemplateDetail.js:113
#: components/PromptDetail/PromptProjectDetail.js:77
#: components/PromptDetail/PromptProjectDetail.js:88
#: components/PromptDetail/PromptWFJobTemplateDetail.js:65
-#: components/TemplateList/TemplateListItem.js:270
-#: screens/Application/ApplicationDetails/ApplicationDetails.js:68
+#: components/TemplateList/TemplateList.js:244
+#: components/TemplateList/TemplateListItem.js:185
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:69
#: screens/Application/ApplicationsList/ApplicationListItem.js:38
#: screens/Application/ApplicationsList/ApplicationsList.js:157
-#: screens/Credential/CredentialDetail/CredentialDetail.js:220
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:67
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:141
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:153
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:68
+#: screens/Credential/CredentialDetail/CredentialDetail.js:230
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:69
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:155
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:167
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:76
#: screens/Inventory/InventoryDetail/InventoryDetail.js:74
-#: screens/Inventory/InventoryList/InventoryList.js:176
-#: screens/Inventory/InventoryList/InventoryList.js:206
-#: screens/Inventory/InventoryList/InventoryListItem.js:115
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107
+#: screens/Inventory/InventoryList/InventoryList.js:191
+#: screens/Inventory/InventoryList/InventoryList.js:221
+#: screens/Inventory/InventoryList/InventoryListItem.js:119
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:217
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130
-#: screens/Project/ProjectDetail/ProjectDetail.js:161
-#: screens/Project/ProjectList/ProjectListItem.js:274
-#: screens/Project/ProjectList/ProjectListItem.js:285
+#: screens/Project/ProjectDetail/ProjectDetail.js:179
+#: screens/Project/ProjectList/ProjectListItem.js:287
+#: screens/Project/ProjectList/ProjectListItem.js:298
#: screens/Team/TeamDetail/TeamDetail.js:40
#: screens/Team/TeamList/TeamList.js:143
#: screens/Team/TeamList/TeamListItem.js:38
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:198
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:209
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:120
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:192
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:203
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121
#: screens/User/UserTeams/UserTeamList.js:181
#: screens/User/UserTeams/UserTeamList.js:237
#: screens/User/UserTeams/UserTeamListItem.js:23
@@ -5925,19 +6110,19 @@ msgstr ""
msgid "Organization Name"
msgstr ""
-#: screens/Organization/Organization.js:153
+#: screens/Organization/Organization.js:154
msgid "Organization not found."
msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
-#: routeConfig.js:95
-#: screens/ActivityStream/ActivityStream.js:173
+#: routeConfig.js:96
+#: screens/ActivityStream/ActivityStream.js:181
#: screens/Organization/OrganizationList/OrganizationList.js:117
#: screens/Organization/OrganizationList/OrganizationList.js:163
#: screens/Organization/Organizations.js:16
#: screens/Organization/Organizations.js:26
-#: screens/User/User.js:65
-#: screens/User/UserOrganizations/UserOrganizationList.js:73
+#: screens/User/User.js:66
+#: screens/User/UserOrganizations/UserOrganizationList.js:72
#: screens/User/Users.js:33
#: util/getRelatedResourceDeleteDetails.js:231
#: util/getRelatedResourceDeleteDetails.js:265
@@ -5952,47 +6137,52 @@ msgstr ""
msgid "Out of compliance"
msgstr ""
-#: screens/Job/Job.js:117
-#: screens/Job/Jobs.js:33
+#: screens/Job/Job.js:118
+#: screens/Job/JobOutput/HostEventModal.js:156
+#: screens/Job/Jobs.js:34
msgid "Output"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125
+#: screens/Job/JobOutput/HostEventModal.js:157
+msgid "Output tab"
+msgstr ""
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:76
msgid "Overwrite"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:54
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:125
+#: components/PromptDetail/PromptInventorySourceDetail.js:47
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:126
msgid "Overwrite local groups and hosts from remote inventory source"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:59
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:130
+#: components/PromptDetail/PromptInventorySourceDetail.js:52
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132
msgid "Overwrite local variables from remote inventory source"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:82
msgid "Overwrite variables"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:496
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:478
msgid "POST"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:497
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:479
msgid "PUT"
msgstr ""
#: components/NotificationList/NotificationList.js:198
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139
msgid "Pagerduty"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:269
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:274
msgid "Pagerduty Subdomain"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:296
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:289
msgid "Pagerduty subdomain"
msgstr ""
@@ -6016,23 +6206,28 @@ msgstr ""
msgid "Pan Up"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:259
+#: components/AdHocCommands/AdHocDetailsStep.js:243
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:413
-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"
-"documentation for example syntax."
-msgstr ""
+#~ 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"
+#~ "documentation for example syntax."
+#~ msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:215
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:14
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.js:184
+#: screens/Job/Job.helptext.js:12
+#: screens/Template/shared/JobTemplate.helptext.js:13
+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 documentation for example syntax."
+msgstr ""
+
+#: screens/Login/Login.js:205
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:71
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:212
@@ -6057,8 +6252,8 @@ msgstr ""
msgid "Past week"
msgstr ""
-#: components/JobList/JobList.js:224
-#: components/StatusLabel/StatusLabel.js:36
+#: components/JobList/JobList.js:228
+#: components/StatusLabel/StatusLabel.js:41
#: components/Workflow/WorkflowNodeHelp.js:93
msgid "Pending"
msgstr ""
@@ -6067,15 +6262,15 @@ msgstr ""
msgid "Pending Workflow Approvals"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:124
+#: screens/Inventory/InventoryList/InventoryListItem.js:128
msgid "Pending delete"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:343
+#: components/Lookup/HostFilterLookup.js:369
msgid "Perform a search to define a host filter"
msgstr ""
-#: screens/User/UserTokenDetail/UserTokenDetail.js:69
+#: screens/User/UserTokenDetail/UserTokenDetail.js:72
#: screens/User/UserTokenList/UserTokenList.js:105
msgid "Personal Access Token"
msgstr ""
@@ -6084,7 +6279,7 @@ msgstr ""
msgid "Personal access token"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:119
+#: screens/Job/JobOutput/HostEventModal.js:122
msgid "Play"
msgstr ""
@@ -6092,45 +6287,46 @@ msgstr ""
msgid "Play Count"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:123
+#: screens/Job/JobOutput/JobOutputSearch.js:125
msgid "Play Started"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:153
-#: screens/Job/JobDetail/JobDetail.js:254
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:250
+#: components/PromptDetail/PromptJobTemplateDetail.js:146
+#: screens/Job/JobDetail/JobDetail.js:314
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:246
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:43
-#: screens/Template/shared/JobTemplateForm.js:354
+#: screens/Template/shared/JobTemplateForm.js:350
msgid "Playbook"
msgstr ""
-#: components/JobList/JobListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:71
+#: components/JobList/JobListItem.js:44
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Check"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:124
+#: screens/Job/JobOutput/JobOutputSearch.js:126
msgid "Playbook Complete"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:150
-#: screens/Project/ProjectDetail/ProjectDetail.js:229
-#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:82
+#: screens/Project/ProjectDetail/ProjectDetail.js:270
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:71
msgid "Playbook Directory"
msgstr ""
-#: components/JobList/JobList.js:209
-#: components/JobList/JobListItem.js:38
+#: components/JobList/JobList.js:213
+#: components/JobList/JobListItem.js:44
#: components/Schedule/ScheduleList/ScheduleListItem.js:37
-#: screens/Job/JobDetail/JobDetail.js:71
+#: screens/Job/JobDetail/JobDetail.js:66
msgid "Playbook Run"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:115
+#: screens/Job/JobOutput/JobOutputSearch.js:127
msgid "Playbook Started"
msgstr ""
-#: components/TemplateList/TemplateList.js:207
+#: components/RelatedTemplateList/RelatedTemplateList.js:174
+#: components/TemplateList/TemplateList.js:222
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:159
@@ -6169,52 +6365,60 @@ msgstr ""
msgid "Please enter a valid URL"
msgstr ""
-#: screens/User/shared/UserTokenForm.js:19
+#: screens/User/shared/UserTokenForm.js:20
msgid "Please enter a value."
msgstr ""
-#: screens/Login/Login.js:148
+#: screens/Login/Login.js:169
msgid "Please log in"
msgstr ""
-#: components/JobList/JobList.js:186
+#: components/JobList/JobList.js:190
msgid "Please run a job to populate this list."
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:590
+#: components/Schedule/shared/ScheduleForm.js:622
msgid "Please select a day number between 1 and 31."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:169
+#: screens/Template/shared/JobTemplateForm.js:170
msgid "Please select an Inventory or check the Prompt on Launch option"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:582
+#: components/Schedule/shared/ScheduleForm.js:614
msgid "Please select an end date/time that comes after the start date/time."
msgstr ""
-#: components/Lookup/HostFilterLookup.js:332
+#: components/Lookup/HostFilterLookup.js:358
msgid "Please select an organization before editing the host filter"
msgstr ""
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:77
+#: screens/Job/JobOutput/EmptyOutput.js:20
+msgid "Please try another search using the filter above"
+msgstr ""
+
+#: screens/TopologyView/ContentLoading.js:40
+msgid "Please wait until the topology view is populated..."
+msgstr ""
+
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78
msgid "Pod spec override"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:203
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
#: screens/InstanceGroup/Instances/InstanceListItem.js:203
-#: screens/Instances/InstanceDetail/InstanceDetail.js:154
+#: screens/Instances/InstanceDetail/InstanceDetail.js:158
#: screens/Instances/InstanceList/InstanceListItem.js:218
msgid "Policy Type"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:69
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:44
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:63
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:26
msgid "Policy instance minimum"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:74
-#: screens/InstanceGroup/shared/InstanceGroupForm.js:54
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70
+#: screens/InstanceGroup/shared/InstanceGroupForm.js:36
msgid "Policy instance percentage"
msgstr ""
@@ -6224,20 +6428,29 @@ msgid "Populate field from an external secret management system"
msgstr ""
#: components/Lookup/HostFilterLookup.js:322
+#~ msgid ""
+#~ "Populate the hosts for this inventory by using a search\n"
+#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+#~ "Refer to the documentation for further syntax and\n"
+#~ "examples. Refer to the Ansible Tower documentation for further syntax and\n"
+#~ "examples."
+#~ msgstr ""
+
+#: components/Lookup/HostFilterLookup.js:348
msgid ""
"Populate the hosts for this inventory by using a search\n"
-"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+"filter. Example: ansible_facts__ansible_distribution:\"RedHat\".\n"
"Refer to the documentation for further syntax and\n"
"examples. Refer to the Ansible Tower documentation for further syntax and\n"
"examples."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:103
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:164
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102
msgid "Port"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:222
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:231
msgid "Preconditions for running this node when there are multiple parents. Refer to the"
msgstr ""
@@ -6247,17 +6460,17 @@ msgid ""
"choice per line."
msgstr ""
-#: components/CodeEditor/CodeEditor.js:184
+#: components/CodeEditor/CodeEditor.js:181
msgid "Press Enter to edit. Press ESC to stop editing."
msgstr ""
#: components/SelectedList/DraggableSelectedList.js:85
-#~ msgid ""
-#~ "Press space or enter to begin dragging,\n"
-#~ "and use the arrow keys to navigate up or down.\n"
-#~ "Press enter to confirm the drag, or any other key to\n"
-#~ "cancel the drag operation."
-#~ msgstr ""
+msgid ""
+"Press space or enter to begin dragging,\n"
+"and use the arrow keys to navigate up or down.\n"
+"Press enter to confirm the drag, or any other key to\n"
+"cancel the drag operation."
+msgstr ""
#: components/AdHocCommands/useAdHocPreviewStep.js:17
#: components/LaunchPrompt/steps/usePreviewStep.js:23
@@ -6268,9 +6481,9 @@ msgstr ""
msgid "Private key passphrase"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:65
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:127
-#: screens/Template/shared/JobTemplateForm.js:557
+#: components/PromptDetail/PromptJobTemplateDetail.js:58
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:120
+#: screens/Template/shared/JobTemplateForm.js:499
msgid "Privilege Escalation"
msgstr ""
@@ -6278,39 +6491,44 @@ msgstr ""
msgid "Privilege escalation password"
msgstr ""
-#: components/JobList/JobListItem.js:220
+#: screens/Template/shared/JobTemplate.helptext.js:37
+msgid "Privilege escalation: If enabled, run this playbook as an administrator."
+msgstr ""
+
+#: components/JobList/JobListItem.js:239
#: components/Lookup/ProjectLookup.js:104
#: components/Lookup/ProjectLookup.js:109
#: components/Lookup/ProjectLookup.js:165
-#: components/PromptDetail/PromptInventorySourceDetail.js:105
-#: components/PromptDetail/PromptJobTemplateDetail.js:138
-#: components/PromptDetail/PromptJobTemplateDetail.js:146
-#: components/TemplateList/TemplateListItem.js:298
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:218
-#: screens/Job/JobDetail/JobDetail.js:222
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:225
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234
+#: components/PromptDetail/PromptInventorySourceDetail.js:98
+#: components/PromptDetail/PromptJobTemplateDetail.js:131
+#: components/PromptDetail/PromptJobTemplateDetail.js:139
+#: components/TemplateList/TemplateListItem.js:299
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:231
+#: screens/Job/JobDetail/JobDetail.js:158
+#: screens/Job/JobDetail/JobDetail.js:176
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:222
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:38
msgid "Project"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:143
-#: screens/Project/ProjectDetail/ProjectDetail.js:226
+#: screens/Project/ProjectDetail/ProjectDetail.js:263
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:60
msgid "Project Base Path"
msgstr ""
#: screens/Job/JobDetail/JobDetail.js:227
-msgid "Project Status"
-msgstr ""
+#~ msgid "Project Status"
+#~ msgstr ""
#: components/Workflow/WorkflowLegend.js:104
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:99
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:85
msgid "Project Sync"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:259
-#: screens/Project/ProjectList/ProjectListItem.js:216
+#: screens/Project/ProjectDetail/ProjectDetail.js:302
+#: screens/Project/ProjectList/ProjectListItem.js:229
msgid "Project Sync Error"
msgstr ""
@@ -6318,7 +6536,19 @@ msgstr ""
msgid "Project Update"
msgstr ""
-#: screens/Project/Project.js:137
+#: screens/Job/JobDetail/JobDetail.js:164
+msgid "Project Update Status"
+msgstr ""
+
+#: screens/Job/Job.helptext.js:21
+msgid "Project checkout results"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.js:132
+msgid "Project copied successfully"
+msgstr ""
+
+#: screens/Project/Project.js:136
msgid "Project not found."
msgstr ""
@@ -6327,13 +6557,13 @@ msgid "Project sync failures"
msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146
-#: routeConfig.js:74
-#: screens/ActivityStream/ActivityStream.js:162
+#: routeConfig.js:75
+#: screens/ActivityStream/ActivityStream.js:170
#: screens/Dashboard/Dashboard.js:103
-#: screens/Project/ProjectList/ProjectList.js:166
-#: screens/Project/ProjectList/ProjectList.js:235
-#: screens/Project/Projects.js:14
-#: screens/Project/Projects.js:24
+#: screens/Project/ProjectList/ProjectList.js:180
+#: screens/Project/ProjectList/ProjectList.js:249
+#: screens/Project/Projects.js:12
+#: screens/Project/Projects.js:22
#: util/getRelatedResourceDeleteDetails.js:59
#: util/getRelatedResourceDeleteDetails.js:194
#: util/getRelatedResourceDeleteDetails.js:224
@@ -6344,18 +6574,18 @@ msgstr ""
msgid "Promote Child Groups and Hosts"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:638
-#: components/Schedule/shared/ScheduleForm.js:641
+#: components/Schedule/shared/ScheduleForm.js:670
+#: components/Schedule/shared/ScheduleForm.js:673
msgid "Prompt"
msgstr ""
-#: components/PromptDetail/PromptDetail.js:180
+#: components/PromptDetail/PromptDetail.js:173
msgid "Prompt Overrides"
msgstr ""
#: components/CodeEditor/VariablesField.js:241
#: components/FieldWithPrompt/FieldWithPrompt.js:46
-#: screens/Credential/CredentialDetail/CredentialDetail.js:166
+#: screens/Credential/CredentialDetail/CredentialDetail.js:175
msgid "Prompt on launch"
msgstr ""
@@ -6363,13 +6593,12 @@ msgstr ""
msgid "Prompt | {0}"
msgstr ""
-#: components/PromptDetail/PromptDetail.js:178
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:289
+#: components/PromptDetail/PromptDetail.js:171
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:282
msgid "Prompted Values"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:443
-#: screens/Template/shared/WorkflowJobTemplateForm.js:155
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:6
msgid ""
"Provide a host pattern to further constrain\n"
"the list of hosts that will be managed or affected by the\n"
@@ -6377,7 +6606,7 @@ msgid ""
"documentation for more information and examples on patterns."
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:36
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:37
msgid ""
"Provide a host pattern to further constrain the list\n"
"of hosts that will be managed or affected by the playbook. Multiple\n"
@@ -6385,11 +6614,16 @@ msgid ""
"information and examples on patterns."
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:175
+#: screens/Job/Job.helptext.js:13
+#: screens/Template/shared/JobTemplate.helptext.js:14
+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 ""
+
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:179
msgid "Provide a value for this field or select the Prompt on launch option."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:263
+#: components/AdHocCommands/AdHocDetailsStep.js:247
msgid ""
"Provide key/value pairs using either\n"
"YAML or JSON."
@@ -6404,32 +6638,40 @@ msgid ""
msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
-msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics."
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:164
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:288
-#: screens/Template/shared/JobTemplateForm.js:629
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83
+#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform."
+#~ msgstr ""
+
+#: components/PromptDetail/PromptJobTemplateDetail.js:157
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:295
+#: screens/Template/shared/JobTemplateForm.js:562
msgid "Provisioning Callback URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:624
+#: screens/Template/shared/JobTemplateForm.js:557
msgid "Provisioning Callback details"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:70
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:132
-#: screens/Template/shared/JobTemplateForm.js:562
-#: screens/Template/shared/JobTemplateForm.js:565
+#: components/PromptDetail/PromptJobTemplateDetail.js:63
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:125
+#: screens/Template/shared/JobTemplateForm.js:503
+#: screens/Template/shared/JobTemplateForm.js:506
msgid "Provisioning Callbacks"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:83
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:127
+#: screens/Template/shared/JobTemplate.helptext.js:38
+msgid "Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template."
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:113
msgid "Pull"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:157
+#: screens/Template/Survey/SurveyQuestionForm.js:163
msgid "Question"
msgstr ""
@@ -6441,14 +6683,14 @@ msgstr ""
msgid "RADIUS settings"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:233
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:237
#: screens/InstanceGroup/Instances/InstanceListItem.js:161
-#: screens/Instances/InstanceDetail/InstanceDetail.js:183
+#: screens/Instances/InstanceDetail/InstanceDetail.js:187
#: screens/Instances/InstanceList/InstanceListItem.js:171
msgid "RAM {0}"
msgstr ""
-#: screens/User/shared/UserTokenForm.js:79
+#: screens/User/shared/UserTokenForm.js:76
msgid "Read"
msgstr ""
@@ -6468,10 +6710,9 @@ msgstr ""
msgid "Recent Templates list tab"
msgstr ""
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:103
-#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:158
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79
+#: components/RelatedTemplateList/RelatedTemplateList.js:188
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:112
+#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:38
msgid "Recent jobs"
msgstr ""
@@ -6490,7 +6731,8 @@ msgstr ""
#: components/Lookup/ProjectLookup.js:138
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
-#: screens/Project/ProjectList/ProjectList.js:187
+#: screens/Job/JobDetail/JobDetail.js:76
+#: screens/Project/ProjectList/ProjectList.js:201
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100
msgid "Red Hat Insights"
msgstr ""
@@ -6511,13 +6753,14 @@ msgstr ""
msgid "Red Hat, Inc."
msgstr ""
-#: screens/Application/shared/ApplicationForm.js:105
+#: screens/Application/ApplicationDetails/ApplicationDetails.js:93
+#: screens/Application/shared/ApplicationForm.js:106
msgid "Redirect URIs"
msgstr ""
#: screens/Application/ApplicationDetails/ApplicationDetails.js:91
-msgid "Redirect uris"
-msgstr ""
+#~ msgid "Redirect uris"
+#~ msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259
msgid "Redirecting to dashboard"
@@ -6527,14 +6770,19 @@ msgstr ""
msgid "Redirecting to subscription detail"
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:255
+#: screens/Template/Survey/SurveyQuestionForm.js:261
msgid "Refer to the"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:433
-msgid ""
-"Refer to the Ansible documentation for details\n"
-"about the configuration file."
+#~ msgid ""
+#~ "Refer to the Ansible documentation for details\n"
+#~ "about the configuration file."
+#~ msgstr ""
+
+#: screens/Job/Job.helptext.js:26
+#: screens/Template/shared/JobTemplate.helptext.js:46
+msgid "Refer to the Ansible documentation for details about the configuration file."
msgstr ""
#: screens/User/UserTokens/UserTokens.js:77
@@ -6545,33 +6793,34 @@ msgstr ""
msgid "Refresh Token Expiration"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:128
+#: screens/Project/ProjectList/ProjectListItem.js:132
msgid "Refresh for revision"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:130
+#: screens/Project/ProjectList/ProjectListItem.js:134
msgid "Refresh project revision"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:135
+#: components/PromptDetail/PromptInventorySourceDetail.js:128
msgid "Regions"
msgstr ""
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:156
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:91
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:142
msgid "Registry credential"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:265
+#: screens/Inventory/shared/Inventory.helptext.js:156
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.js:79
+#: screens/Inventory/Inventories.js:81
#: screens/Inventory/InventoryGroup/InventoryGroup.js:62
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:175
msgid "Related Groups"
msgstr ""
-#: components/Search/AdvancedSearch.js:188
+#: components/Search/AdvancedSearch.js:287
msgid "Related Keys"
msgstr ""
@@ -6584,15 +6833,15 @@ msgstr ""
msgid "Related search type typeahead"
msgstr ""
-#: components/JobList/JobListItem.js:139
+#: components/JobList/JobListItem.js:146
#: components/LaunchButton/ReLaunchDropDown.js:82
-#: screens/Job/JobDetail/JobDetail.js:472
-#: screens/Job/JobDetail/JobDetail.js:480
+#: screens/Job/JobDetail/JobDetail.js:562
+#: screens/Job/JobDetail/JobDetail.js:570
#: screens/Job/JobOutput/shared/OutputToolbar.js:167
msgid "Relaunch"
msgstr ""
-#: components/JobList/JobListItem.js:119
+#: components/JobList/JobListItem.js:126
#: screens/Job/JobOutput/shared/OutputToolbar.js:147
msgid "Relaunch Job"
msgstr ""
@@ -6610,7 +6859,7 @@ msgstr ""
msgid "Relaunch on"
msgstr ""
-#: components/JobList/JobListItem.js:118
+#: components/JobList/JobListItem.js:125
#: screens/Job/JobOutput/shared/OutputToolbar.js:146
msgid "Relaunch using host parameters"
msgstr ""
@@ -6618,12 +6867,13 @@ msgstr ""
#: components/Lookup/ProjectLookup.js:137
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
-#: screens/Project/ProjectList/ProjectList.js:186
+#: screens/Job/JobDetail/JobDetail.js:77
+#: screens/Project/ProjectList/ProjectList.js:200
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99
msgid "Remote Archive"
msgstr ""
-#: components/SelectedList/DraggableSelectedList.js:83
+#: components/SelectedList/DraggableSelectedList.js:105
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40
@@ -6646,10 +6896,14 @@ msgstr ""
msgid "Remove Node {nodeName}"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:70
+#: screens/Project/shared/Project.helptext.js:109
msgid "Remove any local modifications prior to performing an update."
msgstr ""
+#: components/Search/AdvancedSearch.js:206
+msgid "Remove the current search related to ansible facts to enable another search using this key."
+msgstr ""
+
#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:14
msgid "Remove {0} Access"
msgstr ""
@@ -6663,18 +6917,18 @@ msgid "Removing this link will orphan the rest of the branch and cause it to be
msgstr ""
#: components/SelectedList/DraggableSelectedList.js:83
-#~ msgid "Reorder"
-#~ msgstr ""
+msgid "Reorder"
+msgstr ""
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:271
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:264
msgid "Repeat Frequency"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
msgid "Replace"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:58
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:60
msgid "Replace field with new value"
msgstr ""
@@ -6684,12 +6938,17 @@ msgid "Request subscription"
msgstr ""
#: screens/Template/Survey/SurveyListItem.js:51
-#: screens/Template/Survey/SurveyQuestionForm.js:182
+#: screens/Template/Survey/SurveyQuestionForm.js:188
msgid "Required"
msgstr ""
+#: screens/TopologyView/Header.js:87
+#: screens/TopologyView/Header.js:90
+msgid "Reset zoom"
+msgstr ""
+
#: components/Workflow/WorkflowNodeHelp.js:154
-#: components/Workflow/WorkflowNodeHelp.js:188
+#: components/Workflow/WorkflowNodeHelp.js:190
#: screens/Team/TeamRoles/TeamRoleListItem.js:12
#: screens/Team/TeamRoles/TeamRolesList.js:180
msgid "Resource Name"
@@ -6699,13 +6958,12 @@ msgstr ""
msgid "Resource deleted"
msgstr ""
-#: routeConfig.js:60
-#: screens/ActivityStream/ActivityStream.js:151
+#: routeConfig.js:61
+#: screens/ActivityStream/ActivityStream.js:159
msgid "Resources"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:144
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:61
+#: components/TemplateList/TemplateListItem.js:149
msgid "Resources are missing from this template."
msgstr ""
@@ -6713,38 +6971,38 @@ msgstr ""
msgid "Restore initial value."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244
+#: screens/Inventory/shared/Inventory.helptext.js:153
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/JobCancelButton/JobCancelButton.js:78
-#: components/JobCancelButton/JobCancelButton.js:82
+#: components/JobCancelButton/JobCancelButton.js:81
+#: components/JobCancelButton/JobCancelButton.js:85
#: components/JobList/JobListCancelButton.js:160
#: components/JobList/JobListCancelButton.js:163
-#: screens/Job/JobOutput/JobOutput.js:774
-#: screens/Job/JobOutput/JobOutput.js:777
+#: screens/Job/JobOutput/JobOutput.js:764
+#: screens/Job/JobOutput/JobOutput.js:767
msgid "Return"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:128
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129
msgid "Return to subscription management."
msgstr ""
-#: components/Search/AdvancedSearch.js:134
+#: components/Search/AdvancedSearch.js:171
msgid "Returns results that have values other than this one as well as other filters."
msgstr ""
-#: components/Search/AdvancedSearch.js:121
+#: components/Search/AdvancedSearch.js:158
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.js:127
+#: components/Search/AdvancedSearch.js:164
msgid "Returns results that satisfy this one or any other filters."
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:50
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:52
#: screens/Setting/shared/RevertButton.js:53
#: screens/Setting/shared/RevertButton.js:62
msgid "Revert"
@@ -6759,7 +7017,7 @@ msgstr ""
msgid "Revert all to default"
msgstr ""
-#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57
+#: screens/Credential/shared/CredentialFormFields/CredentialField.js:59
msgid "Revert field to previously saved value"
msgstr ""
@@ -6771,18 +7029,18 @@ msgstr ""
msgid "Revert to factory default."
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:249
-#: screens/Project/ProjectList/ProjectList.js:210
-#: screens/Project/ProjectList/ProjectListItem.js:208
+#: screens/Job/JobDetail/JobDetail.js:309
+#: screens/Project/ProjectList/ProjectList.js:224
+#: screens/Project/ProjectList/ProjectListItem.js:221
msgid "Revision"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36
+#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:20
msgid "Revision #"
msgstr ""
#: components/NotificationList/NotificationList.js:199
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140
msgid "Rocket.Chat"
msgstr ""
@@ -6797,56 +7055,63 @@ msgstr ""
msgid "Role"
msgstr ""
-#: components/ResourceAccessList/ResourceAccessList.js:145
-#: components/ResourceAccessList/ResourceAccessList.js:158
-#: components/ResourceAccessList/ResourceAccessList.js:185
+#: components/ResourceAccessList/ResourceAccessList.js:189
+#: components/ResourceAccessList/ResourceAccessList.js:202
+#: components/ResourceAccessList/ResourceAccessList.js:229
#: components/ResourceAccessList/ResourceAccessListItem.js:69
-#: screens/Team/Team.js:58
-#: screens/Team/Teams.js:31
-#: screens/User/User.js:70
+#: screens/Team/Team.js:59
+#: screens/Team/Teams.js:32
+#: screens/User/User.js:71
#: screens/User/Users.js:31
msgid "Roles"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:98
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:99
#: components/Workflow/WorkflowLinkHelp.js:39
#: screens/Credential/shared/ExternalTestModal.js:89
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24
-#: screens/Template/shared/JobTemplateForm.js:201
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:23
+#: screens/Template/shared/JobTemplateForm.js:210
msgid "Run"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:137
+#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:135
#: components/AdHocCommands/AdHocCommands.js:141
-#: components/AdHocCommands/AdHocCommands.js:147
-#: components/AdHocCommands/AdHocCommands.js:151
-#: screens/Job/JobDetail/JobDetail.js:72
+#: components/AdHocCommands/AdHocCommands.js:145
+#: screens/Job/JobDetail/JobDetail.js:67
msgid "Run Command"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:266
-#: screens/Instances/InstanceDetail/InstanceDetail.js:221
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:270
+#: screens/Instances/InstanceDetail/InstanceDetail.js:225
msgid "Run a health check on the instance"
msgstr ""
-#: components/AdHocCommands/AdHocCommands.js:131
+#: components/AdHocCommands/AdHocCommands.js:125
msgid "Run ad hoc command"
msgstr ""
-#: components/AdHocCommands/AdHocCommandsWizard.js:51
+#: components/AdHocCommands/AdHocCommandsWizard.js:49
msgid "Run command"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:213
+#: components/Schedule/shared/FrequencyDetailSubform.js:216
msgid "Run every"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:146
+#: components/Schedule/shared/ScheduleForm.js:148
msgid "Run frequency"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:334
+#: components/HealthCheckButton/HealthCheckButton.js:32
+#: components/HealthCheckButton/HealthCheckButton.js:45
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:279
+#: screens/Instances/InstanceDetail/InstanceDetail.js:234
+msgid "Run health check"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:337
msgid "Run on"
msgstr ""
@@ -6854,25 +7119,30 @@ msgstr ""
msgid "Run type"
msgstr ""
-#: components/JobList/JobList.js:226
-#: components/StatusLabel/StatusLabel.js:35
-#: components/TemplateList/TemplateListItem.js:113
+#: components/JobList/JobList.js:230
+#: components/StatusLabel/StatusLabel.js:40
+#: components/TemplateList/TemplateListItem.js:118
#: components/Workflow/WorkflowNodeHelp.js:99
msgid "Running"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:116
+#: screens/Job/JobOutput/JobOutputSearch.js:128
msgid "Running Handlers"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:206
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:286
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:210
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:210
#: screens/InstanceGroup/Instances/InstanceListItem.js:194
-#: screens/Instances/InstanceDetail/InstanceDetail.js:157
+#: screens/Instances/InstanceDetail/InstanceDetail.js:161
#: screens/Instances/InstanceList/InstanceListItem.js:209
msgid "Running Jobs"
msgstr ""
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:277
+#: screens/Instances/InstanceDetail/InstanceDetail.js:232
+msgid "Running health check"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71
msgid "Running jobs"
msgstr ""
@@ -6898,7 +7168,7 @@ msgstr ""
msgid "SSH password"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:229
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:234
msgid "SSL Connection"
msgstr ""
@@ -6908,36 +7178,36 @@ msgid "START"
msgstr ""
#: components/Sparkline/Sparkline.js:31
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:162
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:38
-#: screens/Project/ProjectDetail/ProjectDetail.js:120
-#: screens/Project/ProjectList/ProjectListItem.js:69
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:175
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:39
+#: screens/Project/ProjectDetail/ProjectDetail.js:135
+#: screens/Project/ProjectList/ProjectListItem.js:73
msgid "STATUS:"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:311
+#: components/Schedule/shared/FrequencyDetailSubform.js:314
msgid "Sat"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:316
-#: components/Schedule/shared/FrequencyDetailSubform.js:448
+#: components/Schedule/shared/FrequencyDetailSubform.js:319
+#: components/Schedule/shared/FrequencyDetailSubform.js:451
msgid "Saturday"
msgstr ""
-#: components/AddRole/AddResourceRole.js:266
+#: components/AddRole/AddResourceRole.js:247
#: components/AssociateModal/AssociateModal.js:104
#: components/AssociateModal/AssociateModal.js:110
#: components/FormActionGroup/FormActionGroup.js:13
#: components/FormActionGroup/FormActionGroup.js:19
-#: components/Schedule/shared/ScheduleForm.js:624
-#: components/Schedule/shared/ScheduleForm.js:630
+#: components/Schedule/shared/ScheduleForm.js:656
+#: components/Schedule/shared/ScheduleForm.js:662
#: components/Schedule/shared/useSchedulePromptSteps.js:45
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:113
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:130
#: screens/Credential/shared/CredentialForm.js:318
#: screens/Credential/shared/CredentialForm.js:323
#: screens/Setting/shared/RevertFormActionGroup.js:12
#: screens/Setting/shared/RevertFormActionGroup.js:18
-#: screens/Template/Survey/SurveyReorderModal.js:195
+#: screens/Template/Survey/SurveyReorderModal.js:205
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:129
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158
@@ -6958,12 +7228,21 @@ msgstr ""
msgid "Save successful!"
msgstr ""
-#: screens/Project/Projects.js:36
-#: screens/Template/Templates.js:53
+#: components/JobList/JobListItem.js:181
+#: components/JobList/JobListItem.js:187
+msgid "Schedule"
+msgstr ""
+
+#: screens/Project/Projects.js:34
+#: screens/Template/Templates.js:54
msgid "Schedule Details"
msgstr ""
-#: screens/Inventory/Inventories.js:90
+#: components/Schedule/shared/ScheduleForm.js:455
+msgid "Schedule Rules"
+msgstr ""
+
+#: screens/Inventory/Inventories.js:92
msgid "Schedule details"
msgstr ""
@@ -6975,7 +7254,7 @@ msgstr ""
msgid "Schedule is inactive"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:534
+#: components/Schedule/shared/ScheduleForm.js:566
msgid "Schedule is missing rrule"
msgstr ""
@@ -6985,31 +7264,35 @@ msgstr ""
#: components/Schedule/ScheduleList/ScheduleList.js:163
#: components/Schedule/ScheduleList/ScheduleList.js:228
-#: routeConfig.js:43
-#: screens/ActivityStream/ActivityStream.js:145
-#: screens/Inventory/Inventories.js:87
+#: routeConfig.js:44
+#: screens/ActivityStream/ActivityStream.js:153
+#: screens/Inventory/Inventories.js:89
#: screens/Inventory/InventorySource/InventorySource.js:88
-#: screens/ManagementJob/ManagementJob.js:107
-#: screens/ManagementJob/ManagementJobs.js:24
-#: screens/Project/Project.js:121
-#: screens/Project/Projects.js:33
+#: screens/ManagementJob/ManagementJob.js:108
+#: screens/ManagementJob/ManagementJobs.js:23
+#: screens/Project/Project.js:120
+#: screens/Project/Projects.js:31
#: screens/Schedule/AllSchedules.js:21
-#: screens/Template/Template.js:147
-#: screens/Template/Templates.js:50
-#: screens/Template/WorkflowJobTemplate.js:129
+#: screens/Template/Template.js:148
+#: screens/Template/Templates.js:51
+#: screens/Template/WorkflowJobTemplate.js:130
msgid "Schedules"
msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:136
-#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31
-#: screens/User/UserTokenDetail/UserTokenDetail.js:47
-#: screens/User/UserTokenList/UserTokenList.js:138
-#: screens/User/UserTokenList/UserTokenList.js:184
-#: screens/User/UserTokenList/UserTokenListItem.js:29
-#: screens/User/shared/UserTokenForm.js:69
+#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:33
+#: screens/User/UserTokenDetail/UserTokenDetail.js:49
+#: screens/User/UserTokenList/UserTokenList.js:142
+#: screens/User/UserTokenList/UserTokenList.js:189
+#: screens/User/UserTokenList/UserTokenListItem.js:32
+#: screens/User/shared/UserTokenForm.js:68
msgid "Scope"
msgstr ""
+#: screens/User/shared/User.helptext.js:5
+msgid "Scope for the token's access"
+msgstr ""
+
#: screens/Job/JobOutput/PageControls.js:79
msgid "Scroll first"
msgstr ""
@@ -7026,44 +7309,48 @@ msgstr ""
msgid "Scroll previous"
msgstr ""
-#: components/Lookup/HostFilterLookup.js:263
-#: components/Lookup/Lookup.js:136
+#: components/Lookup/HostFilterLookup.js:289
+#: components/Lookup/Lookup.js:137
msgid "Search"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:149
+#: screens/Job/JobOutput/JobOutputSearch.js:152
msgid "Search is disabled while the job is running"
msgstr ""
-#: components/Search/AdvancedSearch.js:233
-#: components/Search/Search.js:241
+#: components/Search/AdvancedSearch.js:311
+#: components/Search/Search.js:259
msgid "Search submit button"
msgstr ""
-#: components/Search/Search.js:230
+#: components/Search/Search.js:248
msgid "Search text input"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:398
+#: components/Lookup/HostFilterLookup.js:397
+msgid "Searching by ansible_facts requires special syntax. Refer to the"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:401
msgid "Second"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:121
+#: components/PromptDetail/PromptInventorySourceDetail.js:114
#: components/PromptDetail/PromptProjectDetail.js:138
-#: screens/Project/ProjectDetail/ProjectDetail.js:217
+#: screens/Project/ProjectDetail/ProjectDetail.js:251
msgid "Seconds"
msgstr ""
-#: components/AdHocCommands/AdHocPreviewStep.js:34
+#: components/AdHocCommands/AdHocPreviewStep.js:35
#: components/LaunchPrompt/steps/PreviewStep.js:63
msgid "See errors on the left"
msgstr ""
-#: components/JobList/JobListItem.js:77
-#: components/Lookup/HostFilterLookup.js:353
-#: components/Lookup/Lookup.js:193
+#: components/JobList/JobListItem.js:84
+#: components/Lookup/HostFilterLookup.js:379
+#: components/Lookup/Lookup.js:194
#: components/Pagination/Pagination.js:33
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:98
msgid "Select"
msgstr ""
@@ -7077,7 +7364,7 @@ msgstr ""
msgid "Select Groups"
msgstr ""
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:277
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278
msgid "Select Hosts"
msgstr ""
@@ -7085,7 +7372,7 @@ msgstr ""
msgid "Select Input"
msgstr ""
-#: screens/InstanceGroup/Instances/InstanceList.js:283
+#: screens/InstanceGroup/Instances/InstanceList.js:284
msgid "Select Instances"
msgstr ""
@@ -7093,15 +7380,15 @@ msgstr ""
msgid "Select Items"
msgstr ""
-#: components/AddRole/AddResourceRole.js:220
+#: components/AddRole/AddResourceRole.js:201
msgid "Select Items from List"
msgstr ""
-#: screens/Template/shared/LabelSelect.js:99
+#: components/LabelSelect/LabelSelect.js:99
msgid "Select Labels"
msgstr ""
-#: components/AddRole/AddResourceRole.js:255
+#: components/AddRole/AddResourceRole.js:236
msgid "Select Roles to Apply"
msgstr ""
@@ -7113,25 +7400,27 @@ msgstr ""
msgid "Select a JSON formatted service account key to autopopulate the following fields."
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:122
msgid "Select a Node Type"
msgstr ""
-#: components/AddRole/AddResourceRole.js:189
+#: components/AddRole/AddResourceRole.js:170
msgid "Select a Resource Type"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:334
-msgid ""
-"Select a branch for the job template. This branch is applied to\n"
-"all job template nodes that prompt for a branch."
-msgstr ""
+#~ 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.js:47
+#: components/LaunchPrompt/steps/OtherPromptsStep.js: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.js:177
+#: screens/Job/Job.helptext.js:20
+#: screens/Template/shared/JobTemplate.helptext.js:26
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:10
msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch."
msgstr ""
@@ -7151,16 +7440,16 @@ msgstr ""
msgid "Select a metric"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:74
+#: components/AdHocCommands/AdHocDetailsStep.js:75
msgid "Select a module"
msgstr ""
-#: screens/Template/shared/PlaybookSelect.js:57
-#: screens/Template/shared/PlaybookSelect.js:58
+#: screens/Template/shared/PlaybookSelect.js:60
+#: screens/Template/shared/PlaybookSelect.js:61
msgid "Select a playbook"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:322
+#: screens/Template/shared/JobTemplateForm.js:319
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -7169,8 +7458,8 @@ msgid "Select a question to delete"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:19
-msgid "Select a row to approve"
-msgstr ""
+#~ msgid "Select a row to approve"
+#~ msgstr ""
#: components/PaginatedTable/ToolbarDeleteButton.js:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:103
@@ -7178,61 +7467,63 @@ msgid "Select a row to delete"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:19
-msgid "Select a row to deny"
-msgstr ""
+#~ msgid "Select a row to deny"
+#~ msgstr ""
-#: components/DisassociateButton/DisassociateButton.js:71
+#: components/DisassociateButton/DisassociateButton.js:75
msgid "Select a row to disassociate"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:87
msgid "Select a subscription"
msgstr ""
#: components/HostForm/HostForm.js:39
-#: components/Schedule/shared/FrequencyDetailSubform.js:56
-#: components/Schedule/shared/FrequencyDetailSubform.js:84
-#: components/Schedule/shared/FrequencyDetailSubform.js:88
-#: components/Schedule/shared/FrequencyDetailSubform.js:96
-#: components/Schedule/shared/ScheduleForm.js:93
-#: components/Schedule/shared/ScheduleForm.js:97
+#: components/Schedule/shared/FrequencyDetailSubform.js:59
+#: components/Schedule/shared/FrequencyDetailSubform.js:87
+#: components/Schedule/shared/FrequencyDetailSubform.js:91
+#: components/Schedule/shared/FrequencyDetailSubform.js:99
+#: components/Schedule/shared/ScheduleForm.js:95
+#: components/Schedule/shared/ScheduleForm.js:99
#: screens/Credential/shared/CredentialForm.js:44
-#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:77
-#: screens/Inventory/shared/InventoryForm.js:54
-#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:50
-#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:34
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:92
-#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:49
-#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:49
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:78
+#: screens/Inventory/shared/InventoryForm.js:64
+#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:44
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:36
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:96
+#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:43
+#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:45
+#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:45
#: screens/Inventory/shared/SmartInventoryForm.js:67
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
-#: screens/Project/shared/ProjectForm.js:189
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:421
+#: screens/Project/shared/ProjectForm.js:190
#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39
#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:36
#: screens/Team/shared/TeamForm.js:49
#: screens/Template/Survey/SurveyQuestionForm.js:30
-#: screens/Template/shared/WorkflowJobTemplateForm.js:124
+#: screens/Template/shared/WorkflowJobTemplateForm.js:125
#: screens/User/shared/UserForm.js:139
msgid "Select a value for this field"
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:128
+#: screens/Template/shared/JobTemplate.helptext.js:22
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:20
msgid "Select a webhook service."
msgstr ""
-#: components/DataListToolbar/DataListToolbar.js:123
+#: components/DataListToolbar/DataListToolbar.js:121
+#: components/DataListToolbar/DataListToolbar.js:125
#: screens/Template/Survey/SurveyToolbar.js:49
msgid "Select all"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:121
+#: screens/ActivityStream/ActivityStream.js:129
msgid "Select an activity type"
msgstr ""
@@ -7248,7 +7539,7 @@ msgstr ""
msgid "Select an instance to run a health check."
msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:140
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:5
msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory."
msgstr ""
@@ -7256,30 +7547,39 @@ msgstr ""
msgid "Select an option"
msgstr ""
-#: screens/Project/shared/ProjectForm.js:200
+#: screens/Project/shared/ProjectForm.js:201
msgid "Select an organization before editing the default execution environment."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:376
-msgid ""
-"Select credentials for accessing 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."
+#~ msgid ""
+#~ "Select credentials for accessing 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/Job/Job.helptext.js:10
+#: screens/Template/shared/JobTemplate.helptext.js:11
+msgid "Select credentials for accessing 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.js:85
+#: screens/Project/shared/Project.helptext.js:18
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.js:81
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:98
msgid "Select items from list"
msgstr ""
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:55
+msgid "Select items to approve, deny, or cancel"
+msgstr ""
+
#: screens/Dashboard/DashboardGraph.js:124
#: screens/Dashboard/DashboardGraph.js:125
msgid "Select job type"
@@ -7295,13 +7595,13 @@ msgstr ""
msgid "Select period"
msgstr ""
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:100
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117
msgid "Select roles to apply"
msgstr ""
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:127
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:128
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:129
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131
msgid "Select source path"
msgstr ""
@@ -7323,9 +7623,14 @@ msgid "Select the Instance Groups for this Inventory to run on."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:513
-msgid ""
-"Select the Instance Groups for this Job Template\n"
-"to run on."
+#~ msgid ""
+#~ "Select the Instance Groups for this Job Template\n"
+#~ "to run on."
+#~ msgstr ""
+
+#: screens/Job/Job.helptext.js:17
+#: screens/Template/shared/JobTemplate.helptext.js:19
+msgid "Select the Instance Groups for this Job Template to run on."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:513
@@ -7339,8 +7644,8 @@ msgid "Select the Instance Groups for this Organization to run on."
msgstr ""
#: screens/User/shared/UserTokenForm.js:49
-msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
-msgstr ""
+#~ msgid "Select the application that this token will belong to, or leave this field empty to create a Personal Access Token."
+#~ msgstr ""
#: screens/User/shared/UserTokenForm.js:49
#~ msgid "Select the application that this token will belong to."
@@ -7350,80 +7655,90 @@ msgstr ""
msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:321
+#: screens/Template/shared/JobTemplate.helptext.js:8
msgid "Select the execution environment for this job template."
msgstr ""
#: components/Lookup/InventoryLookup.js:133
-#: screens/Template/shared/JobTemplateForm.js:285
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
-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."
+#: screens/Job/Job.helptext.js:6
+#: screens/Template/shared/JobTemplate.helptext.js:6
+msgid "Select the inventory containing the hosts you want this job to manage."
msgstr ""
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:107
+#~ 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.js:32
#: components/HostForm/HostForm.js:51
msgid "Select the inventory that this host will belong to."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:357
+#: screens/Job/Job.helptext.js:9
+#: screens/Template/shared/JobTemplate.helptext.js:10
msgid "Select the playbook to be executed by this job."
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:300
-msgid ""
-"Select the project containing the playbook\n"
-"you want this job to execute."
+#~ msgid ""
+#~ "Select the project containing the playbook\n"
+#~ "you want this job to execute."
+#~ msgstr ""
+
+#: screens/Job/Job.helptext.js:7
+#: screens/Template/shared/JobTemplate.helptext.js:7
+msgid "Select the project containing the playbook you want this job to execute."
msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:79
msgid "Select your Ansible Automation Platform subscription to use."
msgstr ""
-#: components/Lookup/Lookup.js:179
+#: components/Lookup/Lookup.js:180
msgid "Select {0}"
msgstr ""
-#: components/AddRole/AddResourceRole.js:231
-#: components/AddRole/AddResourceRole.js:243
-#: components/AddRole/AddResourceRole.js:261
+#: components/AddRole/AddResourceRole.js:212
+#: components/AddRole/AddResourceRole.js:224
+#: components/AddRole/AddResourceRole.js:242
#: components/AddRole/SelectRoleStep.js:27
#: components/CheckboxListItem/CheckboxListItem.js:44
#: components/Lookup/InstanceGroupsLookup.js:87
#: components/OptionsList/OptionsList.js:74
#: components/Schedule/ScheduleList/ScheduleListItem.js:78
-#: components/TemplateList/TemplateListItem.js:135
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:90
-#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:108
+#: components/TemplateList/TemplateListItem.js:140
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:107
+#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:125
#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26
#: screens/Application/ApplicationsList/ApplicationListItem.js:31
-#: screens/Credential/CredentialList/CredentialListItem.js:53
+#: screens/Credential/CredentialList/CredentialListItem.js:56
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:65
#: screens/Host/HostGroups/HostGroupItem.js:26
#: screens/Host/HostList/HostListItem.js:48
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:59
#: screens/InstanceGroup/Instances/InstanceListItem.js:122
#: screens/Instances/InstanceList/InstanceListItem.js:126
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:42
-#: screens/Inventory/InventoryList/InventoryListItem.js:86
+#: screens/Inventory/InventoryList/InventoryListItem.js:90
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:37
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:110
#: screens/Organization/OrganizationList/OrganizationListItem.js:43
#: screens/Organization/shared/OrganizationForm.js:113
-#: screens/Project/ProjectList/ProjectListItem.js:172
+#: screens/Project/ProjectList/ProjectListItem.js:177
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:242
#: screens/Team/TeamList/TeamListItem.js:31
#: screens/Template/Survey/SurveyListItem.js:34
#: screens/User/UserTokenList/UserTokenListItem.js:19
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:32
msgid "Selected"
msgstr ""
@@ -7434,20 +7749,20 @@ msgstr ""
msgid "Selected Category"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:573
-#: components/Schedule/shared/ScheduleForm.js:574
+#: components/Schedule/shared/ScheduleForm.js:605
+#: components/Schedule/shared/ScheduleForm.js:606
msgid "Selected date range must have at least 1 schedule occurrence."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:159
msgid "Sender Email"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:95
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94
msgid "Sender e-mail"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:150
+#: components/Schedule/shared/FrequencyDetailSubform.js:153
msgid "September"
msgstr ""
@@ -7456,7 +7771,7 @@ msgid "Service account JSON file"
msgstr ""
#: screens/Inventory/shared/InventorySourceForm.js:46
-#: screens/Project/shared/ProjectForm.js:93
+#: screens/Project/shared/ProjectForm.js:94
msgid "Set a value for this field"
msgstr ""
@@ -7468,7 +7783,7 @@ msgstr ""
msgid "Set preferences for data collection, logos, and logins"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130
msgid "Set source path to"
msgstr ""
@@ -7480,23 +7795,23 @@ msgstr ""
#~ msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance."
#~ msgstr ""
-#: screens/Application/shared/ApplicationForm.js:128
+#: screens/Application/shared/Application.helptext.js:5
msgid "Set to Public or Confidential depending on how secure the client device is."
msgstr ""
-#: components/Search/AdvancedSearch.js:112
+#: components/Search/AdvancedSearch.js:149
msgid "Set type"
msgstr ""
-#: components/Search/AdvancedSearch.js:144
+#: components/Search/AdvancedSearch.js:239
msgid "Set type disabled for related search field fuzzy searches"
msgstr ""
-#: components/Search/AdvancedSearch.js:103
+#: components/Search/AdvancedSearch.js:140
msgid "Set type select"
msgstr ""
-#: components/Search/AdvancedSearch.js:106
+#: components/Search/AdvancedSearch.js:143
msgid "Set type typeahead"
msgstr ""
@@ -7516,10 +7831,10 @@ msgstr ""
msgid "Setting name"
msgstr ""
-#: routeConfig.js:153
-#: routeConfig.js:157
-#: screens/ActivityStream/ActivityStream.js:212
-#: screens/ActivityStream/ActivityStream.js:214
+#: routeConfig.js:159
+#: routeConfig.js:163
+#: screens/ActivityStream/ActivityStream.js:220
+#: screens/ActivityStream/ActivityStream.js:222
#: screens/Setting/Settings.js:42
msgid "Settings"
msgstr ""
@@ -7528,12 +7843,12 @@ msgstr ""
msgid "Show"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:173
-#: components/PromptDetail/PromptDetail.js:290
-#: components/PromptDetail/PromptJobTemplateDetail.js:158
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:324
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271
-#: screens/Template/shared/JobTemplateForm.js:495
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:154
+#: components/PromptDetail/PromptDetail.js:283
+#: components/PromptDetail/PromptJobTemplateDetail.js:151
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276
+#: screens/Template/shared/JobTemplateForm.js:448
msgid "Show Changes"
msgstr ""
@@ -7541,8 +7856,8 @@ msgstr ""
#~ msgid "Show all groups"
#~ msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:193
-#: components/AdHocCommands/AdHocDetailsStep.js:194
+#: components/AdHocCommands/AdHocDetailsStep.js:177
+#: components/AdHocCommands/AdHocDetailsStep.js:178
msgid "Show changes"
msgstr ""
@@ -7559,72 +7874,72 @@ msgstr ""
msgid "Show only root groups"
msgstr ""
-#: screens/Login/Login.js:219
+#: screens/Login/Login.js:240
msgid "Sign in with Azure AD"
msgstr ""
-#: screens/Login/Login.js:233
+#: screens/Login/Login.js:254
msgid "Sign in with GitHub"
msgstr ""
-#: screens/Login/Login.js:275
+#: screens/Login/Login.js:296
msgid "Sign in with GitHub Enterprise"
msgstr ""
-#: screens/Login/Login.js:290
+#: screens/Login/Login.js:311
msgid "Sign in with GitHub Enterprise Organizations"
msgstr ""
-#: screens/Login/Login.js:306
+#: screens/Login/Login.js:327
msgid "Sign in with GitHub Enterprise Teams"
msgstr ""
-#: screens/Login/Login.js:247
+#: screens/Login/Login.js:268
msgid "Sign in with GitHub Organizations"
msgstr ""
-#: screens/Login/Login.js:261
+#: screens/Login/Login.js:282
msgid "Sign in with GitHub Teams"
msgstr ""
-#: screens/Login/Login.js:321
+#: screens/Login/Login.js:342
msgid "Sign in with Google"
msgstr ""
-#: screens/Login/Login.js:340
+#: screens/Login/Login.js:361
msgid "Sign in with SAML"
msgstr ""
-#: screens/Login/Login.js:339
+#: screens/Login/Login.js:360
msgid "Sign in with SAML {samlIDP}"
msgstr ""
-#: components/Search/Search.js:129
-#: components/Search/Search.js:130
+#: components/Search/Search.js:145
+#: components/Search/Search.js:146
msgid "Simple key select"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:68
#: components/LaunchPrompt/steps/OtherPromptsStep.js:69
-#: components/PromptDetail/PromptDetail.js:263
-#: components/PromptDetail/PromptJobTemplateDetail.js:267
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:376
-#: screens/Job/JobDetail/JobDetail.js:396
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:442
-#: screens/Template/shared/JobTemplateForm.js:535
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/PromptDetail/PromptDetail.js:256
+#: components/PromptDetail/PromptJobTemplateDetail.js:260
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:369
+#: screens/Job/JobDetail/JobDetail.js:483
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:459
+#: screens/Template/shared/JobTemplateForm.js:481
msgid "Skip Tags"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:538
-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 the documentation for details on the usage\n"
-"of tags."
-msgstr ""
+#~ 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 the documentation for details on the usage\n"
+#~ "of tags."
+#~ msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:70
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:71
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"
@@ -7632,46 +7947,51 @@ msgid ""
"documentation for details on the usage of tags."
msgstr ""
+#: screens/Job/Job.helptext.js:19
+#: screens/Template/shared/JobTemplate.helptext.js:21
+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 the documentation for details on the usage of tags."
+msgstr ""
+
#: screens/Job/JobOutput/shared/HostStatusBar.js:39
msgid "Skipped"
msgstr ""
-#: components/StatusLabel/StatusLabel.js:37
+#: components/StatusLabel/StatusLabel.js:42
msgid "Skipped'"
msgstr ""
#: components/NotificationList/NotificationList.js:200
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141
msgid "Slack"
msgstr ""
-#: screens/Host/HostList/SmartInventoryButton.js:31
-#: screens/Host/HostList/SmartInventoryButton.js:40
-#: screens/Host/HostList/SmartInventoryButton.js:44
-#: screens/Inventory/InventoryList/InventoryList.js:172
-#: screens/Inventory/InventoryList/InventoryListItem.js:113
+#: screens/Host/HostList/SmartInventoryButton.js:39
+#: screens/Host/HostList/SmartInventoryButton.js:48
+#: screens/Host/HostList/SmartInventoryButton.js:52
+#: screens/Inventory/InventoryList/InventoryList.js:187
+#: screens/Inventory/InventoryList/InventoryListItem.js:117
msgid "Smart Inventory"
msgstr ""
-#: screens/Inventory/SmartInventory.js:92
+#: screens/Inventory/SmartInventory.js:94
msgid "Smart Inventory not found."
msgstr ""
-#: components/Lookup/HostFilterLookup.js:318
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:116
+#: components/Lookup/HostFilterLookup.js:344
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:117
msgid "Smart host filter"
msgstr ""
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
msgid "Smart inventory"
msgstr ""
-#: components/AdHocCommands/AdHocPreviewStep.js:31
+#: components/AdHocCommands/AdHocPreviewStep.js:32
#: components/LaunchPrompt/steps/PreviewStep.js:60
msgid "Some of the previous step(s) have errors"
msgstr ""
-#: screens/Host/HostList/SmartInventoryButton.js:12
+#: screens/Host/HostList/SmartInventoryButton.js:17
msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter."
msgstr ""
@@ -7692,55 +8012,58 @@ msgstr ""
#~ msgid "Sort question order"
#~ msgstr ""
-#: components/JobList/JobListItem.js:163
-#: components/PromptDetail/PromptInventorySourceDetail.js:102
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201
+#: components/JobList/JobListItem.js:170
+#: components/PromptDetail/PromptInventorySourceDetail.js:95
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214
#: screens/Inventory/shared/InventorySourceForm.js:131
-#: screens/Job/JobDetail/JobDetail.js:194
+#: screens/Job/JobDetail/JobDetail.js:274
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93
msgid "Source"
msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:46
-#: components/PromptDetail/PromptDetail.js:218
-#: components/PromptDetail/PromptJobTemplateDetail.js:152
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:47
+#: components/PromptDetail/PromptDetail.js:211
+#: components/PromptDetail/PromptJobTemplateDetail.js:145
#: components/PromptDetail/PromptProjectDetail.js:106
#: components/PromptDetail/PromptWFJobTemplateDetail.js:87
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:319
-#: screens/Job/JobDetail/JobDetail.js:243
-#: screens/Project/ProjectDetail/ProjectDetail.js:201
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:245
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:133
-#: screens/Template/shared/JobTemplateForm.js:331
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:312
+#: screens/Job/JobDetail/JobDetail.js:302
+#: screens/Project/ProjectDetail/ProjectDetail.js:229
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:241
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134
+#: screens/Template/shared/JobTemplateForm.js:328
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:286
msgid "Source Control Branch"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:29
msgid "Source Control Branch/Tag/Commit"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:117
-#: screens/Project/ProjectDetail/ProjectDetail.js:205
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:55
+#: screens/Project/ProjectDetail/ProjectDetail.js:239
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:53
msgid "Source Control Credential"
msgstr ""
#: screens/Project/shared/ProjectForm.js:214
-msgid "Source Control Credential Type"
-msgstr ""
+#~ msgid "Source Control Credential Type"
+#~ msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:111
-#: screens/Project/ProjectDetail/ProjectDetail.js:202
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50
+#: screens/Project/ProjectDetail/ProjectDetail.js:234
+#: screens/Project/shared/ProjectSubForms/GitSubForm.js:32
msgid "Source Control Refspec"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:176
+#: screens/Project/ProjectDetail/ProjectDetail.js:194
msgid "Source Control Revision"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:96
-#: screens/Project/ProjectDetail/ProjectDetail.js:172
+#: screens/Job/JobDetail/JobDetail.js:253
+#: screens/Project/ProjectDetail/ProjectDetail.js:190
+#: screens/Project/shared/ProjectForm.js:215
msgid "Source Control Type"
msgstr ""
@@ -7748,34 +8071,34 @@ msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:101
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
-#: screens/Project/ProjectDetail/ProjectDetail.js:200
-#: screens/Project/ProjectList/ProjectList.js:191
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:15
+#: screens/Project/ProjectDetail/ProjectDetail.js:224
+#: screens/Project/ProjectList/ProjectList.js:205
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:16
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:104
msgid "Source Control URL"
msgstr ""
-#: components/JobList/JobList.js:207
-#: components/JobList/JobListItem.js:36
+#: components/JobList/JobList.js:211
+#: components/JobList/JobListItem.js:42
#: components/Schedule/ScheduleList/ScheduleListItem.js:38
-#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/Job/JobDetail/JobDetail.js:64
msgid "Source Control Update"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:328
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335
msgid "Source Phone Number"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:195
+#: components/PromptDetail/PromptInventorySourceDetail.js:188
msgid "Source Variables"
msgstr ""
-#: components/JobList/JobListItem.js:194
-#: screens/Job/JobDetail/JobDetail.js:147
+#: components/JobList/JobListItem.js:213
+#: screens/Job/JobDetail/JobDetail.js:237
msgid "Source Workflow Job"
msgstr ""
-#: screens/Template/shared/WorkflowJobTemplateForm.js:174
+#: screens/Template/shared/WorkflowJobTemplateForm.js:172
msgid "Source control branch"
msgstr ""
@@ -7783,12 +8106,12 @@ msgstr ""
msgid "Source details"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:405
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:390
msgid "Source phone number"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:254
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:285
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:19
msgid "Source variables"
msgstr ""
@@ -7796,46 +8119,46 @@ msgstr ""
msgid "Sourced from a project"
msgstr ""
-#: screens/Inventory/Inventories.js:82
-#: screens/Inventory/Inventory.js:66
+#: screens/Inventory/Inventories.js:84
+#: screens/Inventory/Inventory.js:68
msgid "Sources"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:472
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:30
msgid ""
"Specify HTTP Headers in JSON format. Refer to\n"
"the Ansible Tower documentation for example syntax."
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:386
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:24
msgid ""
"Specify a notification color. Acceptable colors are hex\n"
"color code (example: #3af or #789abc)."
msgstr ""
#: screens/User/shared/UserTokenForm.js:71
-msgid "Specify a scope for the token's access"
-msgstr ""
+#~ msgid "Specify a scope for the token's access"
+#~ msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:26
msgid "Specify the conditions under which this node should be executed"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:171
+#: screens/Job/JobOutput/HostEventModal.js:173
msgid "Standard Error"
msgstr ""
#: screens/Job/JobOutput/HostEventModal.js:152
-msgid "Standard Out"
-msgstr ""
+#~ msgid "Standard Out"
+#~ msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:172
+#: screens/Job/JobOutput/HostEventModal.js:174
msgid "Standard error tab"
msgstr ""
#: screens/Job/JobOutput/HostEventModal.js:153
-msgid "Standard out tab"
-msgstr ""
+#~ msgid "Standard out tab"
+#~ msgstr ""
#: components/NotificationList/NotificationListItem.js:57
#: components/NotificationList/NotificationListItem.js:58
@@ -7844,8 +8167,8 @@ msgstr ""
msgid "Start"
msgstr ""
-#: components/JobList/JobList.js:243
-#: components/JobList/JobListItem.js:92
+#: components/JobList/JobList.js:247
+#: components/JobList/JobListItem.js:99
msgid "Start Time"
msgstr ""
@@ -7853,16 +8176,16 @@ msgstr ""
msgid "Start date"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:120
+#: components/Schedule/shared/ScheduleForm.js:122
msgid "Start date/time"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:449
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:460
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105
msgid "Start message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:458
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:469
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114
msgid "Start message body"
msgstr ""
@@ -7879,39 +8202,44 @@ msgstr ""
msgid "Start time"
msgstr ""
-#: screens/Job/JobDetail/JobDetail.js:110
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:222
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76
+#: screens/Job/JobDetail/JobDetail.js:200
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:253
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:54
msgid "Started"
msgstr ""
-#: components/JobList/JobList.js:220
-#: components/JobList/JobList.js:241
-#: components/JobList/JobListItem.js:88
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:197
-#: screens/InstanceGroup/Instances/InstanceList.js:255
+#: components/JobList/JobList.js:224
+#: components/JobList/JobList.js:245
+#: components/JobList/JobListItem.js:95
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:201
+#: screens/InstanceGroup/Instances/InstanceList.js:256
#: screens/InstanceGroup/Instances/InstanceListItem.js:129
-#: screens/Instances/InstanceDetail/InstanceDetail.js:145
+#: screens/Instances/InstanceDetail/InstanceDetail.js:149
#: screens/Instances/InstanceList/InstanceList.js:151
#: screens/Instances/InstanceList/InstanceListItem.js:134
-#: screens/Inventory/InventoryList/InventoryList.js:204
-#: screens/Inventory/InventoryList/InventoryListItem.js:97
-#: screens/Inventory/InventorySources/InventorySourceList.js:213
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:85
-#: screens/Job/JobDetail/JobDetail.js:101
-#: screens/Job/JobOutput/HostEventModal.js:115
+#: screens/Inventory/InventoryList/InventoryList.js:219
+#: screens/Inventory/InventoryList/InventoryListItem.js:101
+#: screens/Inventory/InventorySources/InventorySourceList.js:212
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:87
+#: screens/Job/JobDetail/JobDetail.js:188
+#: screens/Job/JobOutput/HostEventModal.js:118
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:114
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:194
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:179
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:117
-#: screens/Project/ProjectList/ProjectList.js:208
-#: screens/Project/ProjectList/ProjectListItem.js:192
+#: screens/Project/ProjectList/ProjectList.js:222
+#: screens/Project/ProjectList/ProjectListItem.js:197
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:45
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:98
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:223
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79
+#: screens/TopologyView/Tooltip.js:98
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:203
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57
msgid "Status"
msgstr ""
+#: screens/TopologyView/Legend.js:107
+msgid "Status types"
+msgstr ""
+
#: screens/Job/JobOutput/JobOutputSearch.js:92
msgid "Stdout"
msgstr ""
@@ -7922,7 +8250,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:85
+#: screens/Project/shared/Project.helptext.js:114
msgid ""
"Submodules will track the latest commit on\n"
"their master branch (or other branch specified in\n"
@@ -7951,7 +8279,7 @@ msgstr ""
msgid "Subscription manifest"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:84
msgid "Subscription selection modal"
msgstr ""
@@ -7963,36 +8291,37 @@ msgstr ""
msgid "Subscription type"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:141
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:142
msgid "Subscriptions table"
msgstr ""
#: components/Lookup/ProjectLookup.js:136
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
-#: screens/Project/ProjectList/ProjectList.js:185
+#: screens/Job/JobDetail/JobDetail.js:75
+#: screens/Project/ProjectList/ProjectList.js:199
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98
msgid "Subversion"
msgstr ""
#: components/NotificationList/NotificationListItem.js:71
#: components/NotificationList/NotificationListItem.js:72
-#: components/StatusLabel/StatusLabel.js:28
+#: components/StatusLabel/StatusLabel.js:33
msgid "Success"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:467
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:478
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123
msgid "Success message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:476
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:487
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132
msgid "Success message body"
msgstr ""
-#: components/JobList/JobList.js:227
-#: components/StatusLabel/StatusLabel.js:30
+#: components/JobList/JobList.js:231
+#: components/StatusLabel/StatusLabel.js:35
#: components/Workflow/WorkflowNodeHelp.js:102
#: screens/Dashboard/shared/ChartTooltip.js:59
msgid "Successful"
@@ -8002,24 +8331,24 @@ msgstr ""
msgid "Successful jobs"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:182
-#: screens/Project/ProjectList/ProjectListItem.js:93
+#: screens/Project/ProjectDetail/ProjectDetail.js:200
+#: screens/Project/ProjectList/ProjectListItem.js:97
msgid "Successfully copied to clipboard!"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:245
+#: components/Schedule/shared/FrequencyDetailSubform.js:248
msgid "Sun"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:250
-#: components/Schedule/shared/FrequencyDetailSubform.js:418
+#: components/Schedule/shared/FrequencyDetailSubform.js:253
+#: components/Schedule/shared/FrequencyDetailSubform.js:421
msgid "Sunday"
msgstr ""
#: components/LaunchPrompt/steps/useSurveyStep.js:26
-#: screens/Template/Template.js:158
-#: screens/Template/Templates.js:47
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/Templates.js:48
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "Survey"
msgstr ""
@@ -8039,7 +8368,7 @@ msgstr ""
#~ msgid "Survey Preview"
#~ msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:181
+#: screens/Template/Survey/SurveyReorderModal.js:191
msgid "Survey Question Order"
msgstr ""
@@ -8047,7 +8376,7 @@ msgstr ""
msgid "Survey Toggle"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:182
+#: screens/Template/Survey/SurveyReorderModal.js:192
msgid "Survey preview modal"
msgstr ""
@@ -8055,16 +8384,16 @@ msgstr ""
#~ msgid "Survey questions"
#~ msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:118
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:120
#: screens/Inventory/shared/InventorySourceSyncButton.js:41
-#: screens/Project/shared/ProjectSyncButton.js:43
-#: screens/Project/shared/ProjectSyncButton.js:55
+#: screens/Project/shared/ProjectSyncButton.js:40
+#: screens/Project/shared/ProjectSyncButton.js:52
msgid "Sync"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:225
-#: screens/Project/shared/ProjectSyncButton.js:39
-#: screens/Project/shared/ProjectSyncButton.js:50
+#: screens/Project/ProjectList/ProjectListItem.js:238
+#: screens/Project/shared/ProjectSyncButton.js:36
+#: screens/Project/shared/ProjectSyncButton.js:47
msgid "Sync Project"
msgstr ""
@@ -8078,16 +8407,16 @@ msgstr ""
msgid "Sync all sources"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:237
+#: screens/Inventory/InventorySources/InventorySourceList.js:236
msgid "Sync error"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:194
-#: screens/Project/ProjectList/ProjectListItem.js:105
+#: screens/Project/ProjectDetail/ProjectDetail.js:212
+#: screens/Project/ProjectList/ProjectListItem.js:109
msgid "Sync for revision"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:118
+#: screens/Project/ProjectList/ProjectListItem.js:122
msgid "Syncing"
msgstr ""
@@ -8128,20 +8457,20 @@ msgid "TACACS+ settings"
msgstr ""
#: screens/Dashboard/Dashboard.js:117
-#: screens/Job/JobOutput/HostEventModal.js:97
+#: screens/Job/JobOutput/HostEventModal.js:94
msgid "Tabs"
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:522
-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 the documentation for details on\n"
-"the usage of tags."
-msgstr ""
+#~ 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 the documentation for details on\n"
+#~ "the usage of tags."
+#~ msgstr ""
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:58
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:59
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"
@@ -8149,24 +8478,29 @@ msgid ""
"documentation for details on the usage of tags."
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195
+#: screens/Job/Job.helptext.js:18
+#: screens/Template/shared/JobTemplate.helptext.js:20
+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 the documentation for details on the usage of tags."
+msgstr ""
+
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:198
msgid "Tags for the Annotation"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:177
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:172
msgid "Tags for the annotation (optional)"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:238
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:288
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:352
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:250
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:327
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:455
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:243
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:320
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:438
msgid "Target URL"
msgstr ""
-#: screens/Job/JobOutput/HostEventModal.js:120
+#: screens/Job/JobOutput/HostEventModal.js:123
msgid "Task"
msgstr ""
@@ -8174,7 +8508,7 @@ msgstr ""
msgid "Task Count"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:120
+#: screens/Job/JobOutput/JobOutputSearch.js:130
msgid "Task Started"
msgstr ""
@@ -8191,24 +8525,24 @@ msgstr ""
msgid "Team Roles"
msgstr ""
-#: screens/Team/Team.js:74
+#: screens/Team/Team.js:75
msgid "Team not found."
msgstr ""
-#: components/AddRole/AddResourceRole.js:207
-#: components/AddRole/AddResourceRole.js:208
-#: routeConfig.js:105
-#: screens/ActivityStream/ActivityStream.js:179
-#: screens/Organization/Organization.js:124
+#: components/AddRole/AddResourceRole.js:188
+#: components/AddRole/AddResourceRole.js:189
+#: routeConfig.js:106
+#: screens/ActivityStream/ActivityStream.js:187
+#: screens/Organization/Organization.js:125
#: screens/Organization/OrganizationList/OrganizationList.js:145
#: screens/Organization/OrganizationList/OrganizationListItem.js:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:64
#: screens/Organization/Organizations.js:32
#: screens/Team/TeamList/TeamList.js:112
#: screens/Team/TeamList/TeamList.js:166
-#: screens/Team/Teams.js:14
-#: screens/Team/Teams.js:24
-#: screens/User/User.js:69
+#: screens/Team/Teams.js:15
+#: screens/Team/Teams.js:25
+#: screens/User/User.js:70
#: screens/User/UserTeams/UserTeamList.js:175
#: screens/User/UserTeams/UserTeamList.js:246
#: screens/User/Users.js:32
@@ -8216,22 +8550,27 @@ msgstr ""
msgid "Teams"
msgstr ""
-#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:129
+#: screens/Setting/Jobs/JobsEdit/JobsEdit.js:130
msgid "Template"
msgstr ""
-#: screens/Template/Template.js:174
-#: screens/Template/WorkflowJobTemplate.js:174
+#: components/RelatedTemplateList/RelatedTemplateList.js:115
+#: components/TemplateList/TemplateList.js:133
+msgid "Template copied successfully"
+msgstr ""
+
+#: screens/Template/Template.js:175
+#: screens/Template/WorkflowJobTemplate.js:175
msgid "Template not found."
msgstr ""
-#: components/TemplateList/TemplateList.js:185
-#: components/TemplateList/TemplateList.js:247
-#: routeConfig.js:64
-#: screens/ActivityStream/ActivityStream.js:156
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69
+#: components/TemplateList/TemplateList.js:200
+#: components/TemplateList/TemplateList.js:263
+#: routeConfig.js:65
+#: screens/ActivityStream/ActivityStream.js:164
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:70
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:83
-#: screens/Template/Templates.js:16
+#: screens/Template/Templates.js:17
#: util/getRelatedResourceDeleteDetails.js:217
#: util/getRelatedResourceDeleteDetails.js:274
msgid "Templates"
@@ -8240,7 +8579,7 @@ msgstr ""
#: screens/Credential/shared/CredentialForm.js:331
#: screens/Credential/shared/CredentialForm.js:337
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:410
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:421
msgid "Test"
msgstr ""
@@ -8261,11 +8600,11 @@ msgid "Test passed"
msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.js:80
-#: screens/Template/Survey/SurveyReorderModal.js:171
+#: screens/Template/Survey/SurveyReorderModal.js:181
msgid "Text"
msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:125
+#: screens/Template/Survey/SurveyReorderModal.js:135
msgid "Text Area"
msgstr ""
@@ -8273,11 +8612,11 @@ msgstr ""
msgid "Textarea"
msgstr ""
-#: components/Lookup/Lookup.js:61
+#: components/Lookup/Lookup.js:62
msgid "That value was not found. Please enter or select a valid value."
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:388
+#: components/Schedule/shared/FrequencyDetailSubform.js:391
msgid "The"
msgstr ""
@@ -8289,11 +8628,15 @@ msgstr ""
#~ msgid "The Grant type the user must use for acquire tokens for this application"
#~ msgstr ""
-#: screens/Application/shared/ApplicationForm.js:86
+#: screens/Application/shared/Application.helptext.js:4
msgid "The Grant type the user must use to acquire tokens for this application"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:120
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:128
+msgid "The Instance Groups for this Organization to run on."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:6
msgid ""
"The amount of time (in seconds) before the email\n"
"notification stops trying to reach the host and times out. Ranges\n"
@@ -8301,45 +8644,89 @@ msgid ""
msgstr ""
#: screens/Template/shared/JobTemplateForm.js:489
-msgid ""
-"The amount of time (in seconds) to run\n"
-"before the job is canceled. Defaults to 0 for no job\n"
-"timeout."
+#~ 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/Job/Job.helptext.js:16
+#: screens/Template/shared/JobTemplate.helptext.js:17
+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.js:152
+#: screens/User/shared/User.helptext.js:4
+msgid "The application that this token belongs to, or leave this field empty to create a Personal Access Token."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:9
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/Organization/OrganizationDetail/OrganizationDetail.js:109
+msgid ""
+"The execution environment that will be used for jobs\n"
+"inside of this organization. This will be used a fallback when\n"
+"an execution environment has not been explicitly assigned at the\n"
+"project, job template or workflow level."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:93
msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level."
msgstr ""
-#: screens/Project/shared/ProjectForm.js:198
+#: screens/Project/shared/Project.helptext.js:5
msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level."
msgstr ""
#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:239
-msgid ""
-"The execution environment that will be used when launching\n"
-"this job template. The resolved execution environment can be overridden by\n"
-"explicitly assigning a different one to this job template."
+#~ msgid ""
+#~ "The execution environment that will be used when launching\n"
+#~ "this job template. The resolved execution environment can be overridden by\n"
+#~ "explicitly assigning a different one to this job template."
+#~ msgstr ""
+
+#: screens/Job/Job.helptext.js:8
+#: screens/Template/shared/JobTemplate.helptext.js:9
+msgid "The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template."
msgstr ""
-#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73
+#: screens/Project/shared/Project.helptext.js:93
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/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:104
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:66
+msgid "The following selected items are complete and cannot be acted on: {completedItems}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironment.helptext.js:7
msgid "The full image location, including the container registry, image name, and version tag."
msgstr ""
+#: screens/Inventory/shared/Inventory.helptext.js:191
+msgid ""
+"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 ""
+
+#: screens/Host/HostDetail/HostDetail.js:77
+msgid "The inventory that this host belongs to."
+msgstr ""
+
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:100
+msgid ""
+"The maximum number of hosts allowed to be managed by\n"
+"this organization. Value defaults to 0 which means no limit.\n"
+"Refer to the Ansible documentation for more details."
+msgstr ""
+
#: screens/Organization/shared/OrganizationForm.js:72
msgid ""
"The maximum number of hosts allowed to be managed by this organization.\n"
@@ -8347,38 +8734,49 @@ msgid ""
"documentation for more details."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:427
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:26
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"
+"The number associated with the \"Messaging\n"
+"Service\" in Twilio with the format +18005550199."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:180
+#: screens/Template/shared/JobTemplateForm.js:427
+#~ 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 ""
+
+#: screens/Job/Job.helptext.js:24
+#: screens/Template/shared/JobTemplate.helptext.js:44
+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 ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:164
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.js:41
-#: screens/Job/Job.js:137
+#: screens/Job/Job.js:138
msgid "The page you requested could not be found."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:160
+#: components/AdHocCommands/AdHocDetailsStep.js:144
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/Project/ProjectList/ProjectListItem.js:116
+#: screens/Project/ProjectList/ProjectListItem.js:120
msgid "The project is currently syncing and the revision will be available after the sync is complete."
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:192
-#: screens/Project/ProjectList/ProjectListItem.js:103
+#: screens/Project/ProjectDetail/ProjectDetail.js:210
+#: screens/Project/ProjectList/ProjectListItem.js:107
msgid "The project must be synced before a revision is available."
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.js:126
+#: screens/Project/ProjectList/ProjectListItem.js:130
msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision."
msgstr ""
@@ -8387,7 +8785,11 @@ msgstr ""
msgid "The resource associated with this node has been deleted."
msgstr ""
-#: screens/Template/Survey/SurveyQuestionForm.js:174
+#: screens/Job/JobOutput/EmptyOutput.js:19
+msgid "The search filter did not produce any results…"
+msgstr ""
+
+#: screens/Template/Survey/SurveyQuestionForm.js:180
msgid ""
"The suggested format for variable names is lowercase and\n"
"underscore-separated (for example, foo_bar, user_id, host_name,\n"
@@ -8418,7 +8820,7 @@ msgstr ""
msgid "There must be a value in at least one input"
msgstr ""
-#: screens/Login/Login.js:123
+#: screens/Login/Login.js:144
msgid "There was a problem logging in. Please try again."
msgstr ""
@@ -8430,7 +8832,7 @@ msgstr ""
msgid "There was an error parsing the file. Please check the file formatting and try again."
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:617
+#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:621
msgid "There was an error saving the workflow."
msgstr ""
@@ -8438,27 +8840,32 @@ msgstr ""
#~ msgid "These are the modules that {0} supports running commands against."
#~ msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:68
+#: components/AdHocCommands/AdHocDetailsStep.js:69
msgid "These are the modules that {brandName} supports running commands against."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:138
+#: components/AdHocCommands/AdHocDetailsStep.js:129
msgid "These are the verbosity levels for standard out of the command run that are supported."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:121
+#: components/AdHocCommands/AdHocDetailsStep.js:122
+#: screens/Job/Job.helptext.js:42
msgid "These arguments are used with the specified module."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:110
+#: components/AdHocCommands/AdHocDetailsStep.js:111
msgid "These arguments are used with the specified module. You can find information about {0} by clicking"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:400
+#: screens/Job/Job.helptext.js:32
+msgid "These arguments are used with the specified module. You can find information about {moduleName} by clicking"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:403
msgid "Third"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:152
+#: screens/Template/shared/JobTemplateForm.js:153
msgid "This Project needs to be updated"
msgstr ""
@@ -8480,15 +8887,15 @@ msgstr ""
msgid "This action will disassociate the following:"
msgstr ""
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:113
msgid "This container group is currently being by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Credential/CredentialDetail/CredentialDetail.js:295
+#: screens/Credential/CredentialDetail/CredentialDetail.js:305
msgid "This credential is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:121
msgid "This credential type is currently being used by some credentials and cannot be deleted"
msgstr ""
@@ -8496,9 +8903,16 @@ msgstr ""
msgid ""
"This data is used to enhance\n"
"future releases of the Software and to provide\n"
-"Insights for Ansible Automation Platform."
+"Automation Analytics."
msgstr ""
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74
+#~ msgid ""
+#~ "This data is used to enhance\n"
+#~ "future releases of the Software and to provide\n"
+#~ "Insights for Ansible Automation Platform."
+#~ msgstr ""
+
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62
msgid ""
"This data is used to enhance\n"
@@ -8506,7 +8920,7 @@ msgid ""
"streamline customer experience and success."
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:128
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131
msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
@@ -8515,17 +8929,17 @@ msgstr ""
msgid "This feature is deprecated and will be removed in a future release."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:255
+#: screens/Inventory/shared/Inventory.helptext.js:155
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/AdHocCommands/useAdHocDetailsStep.js:61
-msgid "This field is must not be blank"
-msgstr ""
+#~ msgid "This field is must not be blank"
+#~ msgstr ""
#: components/AdHocCommands/useAdHocDetailsStep.js:55
-msgid "This field is must not be blank."
-msgstr ""
+#~ msgid "This field is must not be blank."
+#~ msgstr ""
#: components/AdHocCommands/useAdHocCredentialPasswordStep.js:44
#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:50
@@ -8556,7 +8970,7 @@ msgstr ""
msgid "This field must be a regular expression"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:49
+#: components/Schedule/shared/FrequencyDetailSubform.js:52
#: util/validators.js:111
msgid "This field must be an integer"
msgstr ""
@@ -8569,12 +8983,13 @@ msgstr ""
msgid "This field must be at least {min} characters"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:52
+#: components/Schedule/shared/FrequencyDetailSubform.js:55
msgid "This field must be greater than 0"
msgstr ""
+#: components/AdHocCommands/useAdHocDetailsStep.js:52
#: components/LaunchPrompt/steps/useSurveyStep.js:111
-#: screens/Template/shared/JobTemplateForm.js:149
+#: screens/Template/shared/JobTemplateForm.js:150
#: screens/User/shared/UserForm.js:92
#: screens/User/shared/UserForm.js:103
#: util/validators.js:5
@@ -8582,6 +8997,10 @@ msgstr ""
msgid "This field must not be blank"
msgstr ""
+#: components/AdHocCommands/useAdHocDetailsStep.js:46
+msgid "This field must not be blank."
+msgstr ""
+
#: util/validators.js:101
msgid "This field must not contain spaces"
msgstr ""
@@ -8598,7 +9017,7 @@ msgstr ""
msgid "This field will be retrieved from an external secret management system using the specified credential."
msgstr ""
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:128
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:125
msgid "This instance group is currently being by other resources. Are you sure you want to delete it?"
msgstr ""
@@ -8606,15 +9025,15 @@ msgstr ""
msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory."
msgstr ""
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:138
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:160
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:297
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329
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.js:74
+#: screens/Application/Applications.js:77
msgid "This is the only time the client secret will be shown."
msgstr ""
@@ -8622,19 +9041,19 @@ msgstr ""
msgid "This is the only time the token value and associated refresh token value will be shown."
msgstr ""
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:507
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:526
msgid "This job template is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186
+#: screens/Organization/OrganizationDetail/OrganizationDetail.js:197
msgid "This organization is currently being by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Project/ProjectDetail/ProjectDetail.js:277
+#: screens/Project/ProjectDetail/ProjectDetail.js:320
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Project/shared/ProjectSyncButton.js:33
+#: screens/Project/shared/Project.helptext.js:59
msgid "This project is currently on sync and cannot be clicked until sync process completed"
msgstr ""
@@ -8654,6 +9073,18 @@ msgstr ""
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr ""
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:90
+msgid "This will cancel the workflow and no subsequent nodes will execute."
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:105
+msgid "This will continue the workflow"
+msgstr ""
+
+#: screens/WorkflowApproval/shared/WorkflowApprovalControls.js:78
+msgid "This will continue the workflow along failure and always paths."
+msgstr ""
+
#: screens/Setting/shared/RevertAllAlert.js:36
msgid ""
"This will revert all configuration values on this page to\n"
@@ -8664,27 +9095,27 @@ msgstr ""
msgid "This workflow does not have any nodes configured."
msgstr ""
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:247
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:269
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.js:289
+#: components/Schedule/shared/FrequencyDetailSubform.js:292
msgid "Thu"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:294
-#: components/Schedule/shared/FrequencyDetailSubform.js:438
+#: components/Schedule/shared/FrequencyDetailSubform.js:297
+#: components/Schedule/shared/FrequencyDetailSubform.js:441
msgid "Thursday"
msgstr ""
-#: screens/ActivityStream/ActivityStream.js:241
-#: screens/ActivityStream/ActivityStream.js:253
+#: screens/ActivityStream/ActivityStream.js:249
+#: screens/ActivityStream/ActivityStream.js:261
#: screens/ActivityStream/ActivityStreamDetailButton.js:41
#: screens/ActivityStream/ActivityStreamListItem.js:42
msgid "Time"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:122
+#: screens/Project/shared/Project.helptext.js:124
msgid ""
"Time in seconds to consider a project\n"
"to be current. During job runs and callbacks the task\n"
@@ -8694,7 +9125,7 @@ msgid ""
"performed."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229
+#: screens/Inventory/shared/Inventory.helptext.js:147
msgid ""
"Time in seconds to consider an inventory sync\n"
"to be current. During job runs and callbacks the task system will\n"
@@ -8703,36 +9134,40 @@ msgid ""
"inventory sync will be performed."
msgstr ""
-#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16
+#: components/StatusLabel/StatusLabel.js:43
msgid "Timed out"
msgstr ""
-#: components/PromptDetail/PromptDetail.js:134
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:168
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:113
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:266
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:177
-#: screens/Template/shared/JobTemplateForm.js:488
+#: components/PromptDetail/PromptDetail.js:127
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:169
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:270
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:186
+#: screens/Template/shared/JobTemplateForm.js:443
msgid "Timeout"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:184
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:193
msgid "Timeout minutes"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:198
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:207
msgid "Timeout seconds"
msgstr ""
+#: screens/Host/HostList/SmartInventoryButton.js:20
+msgid "To create a smart inventory using ansible facts, go to the smart inventory screen."
+msgstr ""
+
#: screens/Template/Survey/SurveyReorderModal.js:182
#~ msgid "To reoder the survey questions drag and drop them in the desired location."
#~ msgstr ""
-#: screens/Template/Survey/SurveyReorderModal.js:184
+#: screens/Template/Survey/SurveyReorderModal.js:194
msgid "To reorder the survey questions drag and drop them in the desired location."
msgstr ""
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:94
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:106
msgid "Toggle Legend"
msgstr ""
@@ -8740,12 +9175,12 @@ msgstr ""
msgid "Toggle Password"
msgstr ""
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:116
msgid "Toggle Tools"
msgstr ""
#: components/HostToggle/HostToggle.js:70
-#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:55
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56
msgid "Toggle host"
msgstr ""
@@ -8755,6 +9190,7 @@ msgstr ""
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82
+#: screens/TopologyView/Header.js:99
msgid "Toggle legend"
msgstr ""
@@ -8783,7 +9219,7 @@ msgstr ""
msgid "Toggle tools"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:362
#: screens/User/UserTokens/UserTokens.js:64
msgid "Token"
msgstr ""
@@ -8797,11 +9233,11 @@ msgstr ""
msgid "Token not found."
msgstr ""
-#: screens/Application/Application/Application.js:79
+#: screens/Application/Application/Application.js:80
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:105
#: screens/Application/ApplicationTokens/ApplicationTokenList.js:128
-#: screens/Application/Applications.js:39
-#: screens/User/User.js:75
+#: screens/Application/Applications.js:40
+#: screens/User/User.js:76
#: screens/User/UserTokenList/UserTokenList.js:118
#: screens/User/Users.js:34
msgid "Tokens"
@@ -8812,32 +9248,42 @@ msgid "Tools"
msgstr ""
#: components/PaginatedTable/PaginatedTable.js:133
-msgid "Top Pagination"
+#~ msgid "Top Pagination"
+#~ msgstr ""
+
+#: routeConfig.js:152
+#: screens/TopologyView/TopologyView.js:40
+msgid "Topology View"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:207
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:211
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:211
#: screens/InstanceGroup/Instances/InstanceListItem.js:199
-#: screens/Instances/InstanceDetail/InstanceDetail.js:158
+#: screens/Instances/InstanceDetail/InstanceDetail.js:162
#: screens/Instances/InstanceList/InstanceListItem.js:214
msgid "Total Jobs"
msgstr ""
-#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:92
+#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:104
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76
msgid "Total Nodes"
msgstr ""
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:81
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:120
+msgid "Total hosts"
+msgstr ""
+
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:72
msgid "Total jobs"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:84
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:83
msgid "Track submodules"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:56
-#: screens/Project/ProjectDetail/ProjectDetail.js:97
+#: screens/Project/ProjectDetail/ProjectDetail.js:108
msgid "Track submodules latest commit on branch"
msgstr ""
@@ -8846,76 +9292,76 @@ msgstr ""
msgid "Trial"
msgstr ""
-#: components/JobList/JobListItem.js:299
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63
-#: screens/Job/JobDetail/JobDetail.js:301
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:201
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:230
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:305
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359
+#: components/JobList/JobListItem.js:318
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:65
+#: screens/Job/JobDetail/JobDetail.js:378
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:235
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:265
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:310
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:80
msgid "True"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:267
+#: components/Schedule/shared/FrequencyDetailSubform.js:270
msgid "Tue"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:272
-#: components/Schedule/shared/FrequencyDetailSubform.js:428
+#: components/Schedule/shared/FrequencyDetailSubform.js:275
+#: components/Schedule/shared/FrequencyDetailSubform.js:431
msgid "Tuesday"
msgstr ""
#: components/NotificationList/NotificationList.js:201
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142
msgid "Twilio"
msgstr ""
-#: components/JobList/JobList.js:242
-#: components/JobList/JobListItem.js:91
+#: components/JobList/JobList.js:246
+#: components/JobList/JobListItem.js:98
#: components/Lookup/ProjectLookup.js:131
#: components/NotificationList/NotificationList.js:219
#: components/NotificationList/NotificationListItem.js:33
-#: components/PromptDetail/PromptDetail.js:122
+#: components/PromptDetail/PromptDetail.js:115
+#: components/RelatedTemplateList/RelatedTemplateList.js:187
#: components/Schedule/ScheduleList/ScheduleList.js:169
#: components/Schedule/ScheduleList/ScheduleListItem.js:97
-#: components/TemplateList/TemplateList.js:199
-#: components/TemplateList/TemplateList.js:228
-#: components/TemplateList/TemplateListItem.js:179
+#: components/TemplateList/TemplateList.js:214
+#: components/TemplateList/TemplateList.js:243
+#: components/TemplateList/TemplateListItem.js:184
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
-#: components/Workflow/WorkflowNodeHelp.js:158
-#: components/Workflow/WorkflowNodeHelp.js:192
-#: screens/Credential/CredentialList/CredentialList.js:146
-#: screens/Credential/CredentialList/CredentialListItem.js:60
+#: components/Workflow/WorkflowNodeHelp.js:160
+#: components/Workflow/WorkflowNodeHelp.js:196
+#: screens/Credential/CredentialList/CredentialList.js:165
+#: screens/Credential/CredentialList/CredentialListItem.js:63
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:94
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:116
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:17
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:46
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:285
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:54
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:209
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:66
#: screens/Inventory/InventoryDetail/InventoryDetail.js:72
-#: screens/Inventory/InventoryList/InventoryList.js:205
-#: screens/Inventory/InventoryList/InventoryListItem.js:112
-#: screens/Inventory/InventorySources/InventorySourceList.js:214
-#: screens/Inventory/InventorySources/InventorySourceListItem.js:98
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:105
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:195
+#: screens/Inventory/InventoryList/InventoryList.js:220
+#: screens/Inventory/InventoryList/InventoryListItem.js:116
+#: screens/Inventory/InventorySources/InventorySourceList.js:213
+#: screens/Inventory/InventorySources/InventorySourceListItem.js:100
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:106
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:180
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:120
#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:157
-#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:78
-#: screens/Project/ProjectList/ProjectList.js:180
-#: screens/Project/ProjectList/ProjectList.js:209
-#: screens/Project/ProjectList/ProjectListItem.js:205
+#: screens/Project/ProjectList/ProjectList.js:194
+#: screens/Project/ProjectList/ProjectList.js:223
+#: screens/Project/ProjectList/ProjectListItem.js:218
#: screens/Team/TeamRoles/TeamRoleListItem.js:17
#: screens/Team/TeamRoles/TeamRolesList.js:181
#: screens/Template/Survey/SurveyList.js:103
#: screens/Template/Survey/SurveyList.js:103
#: screens/Template/Survey/SurveyListItem.js:60
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:93
+#: screens/TopologyView/Tooltip.js:92
#: screens/User/UserDetail/UserDetail.js:75
#: screens/User/UserRoles/UserRolesList.js:156
#: screens/User/UserRoles/UserRolesListItem.js:21
@@ -8924,7 +9370,7 @@ msgstr ""
#: screens/Credential/shared/TypeInputsSubForm.js:25
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:46
-#: screens/Project/shared/ProjectForm.js:246
+#: screens/Project/shared/ProjectForm.js:247
msgid "Type Details"
msgstr ""
@@ -8942,11 +9388,15 @@ msgstr ""
msgid "Unable to change inventory on a host"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:249
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:89
+#: screens/Project/ProjectList/ProjectListItem.js:211
+msgid "Unable to load last job update"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:253
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:87
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:46
#: screens/InstanceGroup/Instances/InstanceListItem.js:78
-#: screens/Instances/InstanceDetail/InstanceDetail.js:201
+#: screens/Instances/InstanceDetail/InstanceDetail.js:205
#: screens/Instances/InstanceList/InstanceListItem.js:77
msgid "Unavailable"
msgstr ""
@@ -8960,7 +9410,7 @@ msgstr ""
msgid "Undo"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:181
+#: screens/Job/JobOutput/JobOutputSearch.js:184
msgid "Unfollow"
msgstr ""
@@ -8968,7 +9418,7 @@ msgstr ""
msgid "Unlimited"
msgstr ""
-#: components/StatusLabel/StatusLabel.js:34
+#: components/StatusLabel/StatusLabel.js:39
#: screens/Job/JobOutput/shared/HostStatusBar.js:51
#: screens/Job/JobOutput/shared/OutputToolbar.js:103
msgid "Unreachable"
@@ -8990,28 +9440,28 @@ msgstr ""
msgid "Unsaved changes modal"
msgstr ""
-#: screens/Project/shared/ProjectSubForms/SharedFields.js:95
+#: screens/Project/shared/ProjectSubForms/SharedFields.js:90
msgid "Update Revision on Launch"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:64
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:135
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164
+#: components/PromptDetail/PromptInventorySourceDetail.js:57
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:138
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:89
msgid "Update on launch"
msgstr ""
-#: components/PromptDetail/PromptInventorySourceDetail.js:69
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:140
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192
+#: components/PromptDetail/PromptInventorySourceDetail.js:62
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:97
msgid "Update on project update"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:71
msgid "Update options"
msgstr ""
#: components/PromptDetail/PromptProjectDetail.js:61
-#: screens/Project/ProjectDetail/ProjectDetail.js:102
+#: screens/Project/ProjectDetail/ProjectDetail.js:114
msgid "Update revision on job launch"
msgstr ""
@@ -9023,7 +9473,7 @@ msgstr ""
msgid "Update settings pertaining to Jobs within {brandName}"
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:194
+#: screens/Template/shared/WebhookSubForm.js:187
msgid "Update webhook key"
msgstr ""
@@ -9040,12 +9490,12 @@ msgid "Upload a Red Hat Subscription Manifest containing your subscription. To g
msgstr ""
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:52
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:129
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:126
msgid "Use SSL"
msgstr ""
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:57
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:134
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:131
msgid "Use TLS"
msgstr ""
@@ -9056,21 +9506,42 @@ msgid ""
"curly braces to access information about the job:"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:238
-#: screens/InstanceGroup/Instances/InstanceList.js:258
-#: screens/Instances/InstanceDetail/InstanceDetail.js:188
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:12
+msgid "Use one Annotation Tag per line, without commas."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:13
+msgid ""
+"Use 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/Notifications.helptext.js:5
+msgid "Use one email address per line to create a recipient list for this type of notification."
+msgstr ""
+
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:28
+msgid ""
+"Use one phone number per line to specify where to\n"
+"route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
+#: screens/InstanceGroup/Instances/InstanceList.js:259
+#: screens/Instances/InstanceDetail/InstanceDetail.js:192
#: screens/Instances/InstanceList/InstanceList.js:154
msgid "Used Capacity"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:242
#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:246
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:80
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:88
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:250
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:78
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:86
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:42
#: screens/InstanceGroup/Instances/InstanceListItem.js:74
-#: screens/Instances/InstanceDetail/InstanceDetail.js:192
-#: screens/Instances/InstanceDetail/InstanceDetail.js:198
+#: screens/Instances/InstanceDetail/InstanceDetail.js:196
+#: screens/Instances/InstanceDetail/InstanceDetail.js:202
#: screens/Instances/InstanceList/InstanceListItem.js:73
msgid "Used capacity"
msgstr ""
@@ -9109,34 +9580,39 @@ msgstr ""
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
-msgid "User and Insights analytics"
+msgid "User and Automation Analytics"
msgstr ""
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202
+#~ msgid "User and Insights analytics"
+#~ msgstr ""
+
#: components/AppContainer/PageHeaderToolbar.js:159
msgid "User details"
msgstr ""
-#: screens/User/User.js:95
+#: screens/User/User.js:96
msgid "User not found."
msgstr ""
-#: screens/User/UserTokenList/UserTokenList.js:176
+#: screens/User/UserTokenList/UserTokenList.js:180
msgid "User tokens"
msgstr ""
-#: components/AddRole/AddResourceRole.js:22
-#: components/AddRole/AddResourceRole.js:37
-#: components/ResourceAccessList/ResourceAccessList.js:129
-#: components/ResourceAccessList/ResourceAccessList.js:182
-#: screens/Login/Login.js:187
+#: components/AddRole/AddResourceRole.js:23
+#: components/AddRole/AddResourceRole.js:38
+#: components/ResourceAccessList/ResourceAccessList.js:173
+#: components/ResourceAccessList/ResourceAccessList.js:226
+#: screens/Login/Login.js:208
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:143
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:243
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:293
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:347
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:248
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:298
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:356
#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:65
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:258
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:335
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:444
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:251
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:328
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:427
#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:204
#: screens/User/UserDetail/UserDetail.js:68
@@ -9151,11 +9627,11 @@ msgstr ""
msgid "Username / password"
msgstr ""
-#: components/AddRole/AddResourceRole.js:197
-#: components/AddRole/AddResourceRole.js:198
-#: routeConfig.js:100
-#: screens/ActivityStream/ActivityStream.js:176
-#: screens/Team/Teams.js:29
+#: components/AddRole/AddResourceRole.js:178
+#: components/AddRole/AddResourceRole.js:179
+#: routeConfig.js:101
+#: screens/ActivityStream/ActivityStream.js:184
+#: screens/Team/Teams.js:30
#: screens/User/UserList/UserList.js:110
#: screens/User/UserList/UserList.js:153
#: screens/User/Users.js:15
@@ -9167,35 +9643,44 @@ msgstr ""
msgid "VMware vCenter"
msgstr ""
-#: components/AdHocCommands/AdHocPreviewStep.js:64
+#: components/AdHocCommands/AdHocPreviewStep.js:69
#: components/HostForm/HostForm.js:113
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:80
-#: components/PromptDetail/PromptDetail.js:166
-#: components/PromptDetail/PromptDetail.js:298
-#: components/PromptDetail/PromptJobTemplateDetail.js:285
+#: components/LaunchPrompt/steps/OtherPromptsStep.js:81
+#: components/PromptDetail/PromptDetail.js:159
+#: components/PromptDetail/PromptDetail.js:291
+#: components/PromptDetail/PromptJobTemplateDetail.js:278
#: components/PromptDetail/PromptWFJobTemplateDetail.js:132
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400
-#: screens/Host/HostDetail/HostDetail.js:90
-#: screens/Inventory/InventoryDetail/InventoryDetail.js:105
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:393
+#: screens/Host/HostDetail/HostDetail.js:91
+#: screens/Inventory/InventoryDetail/InventoryDetail.js:126
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:89
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:143
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:54
-#: screens/Inventory/shared/InventoryForm.js:68
+#: screens/Inventory/shared/InventoryForm.js:90
#: screens/Inventory/shared/InventoryGroupForm.js:46
#: screens/Inventory/shared/SmartInventoryForm.js:93
-#: screens/Job/JobDetail/JobDetail.js:439
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:466
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:206
-#: screens/Template/shared/JobTemplateForm.js:411
-#: screens/Template/shared/WorkflowJobTemplateForm.js:213
+#: screens/Job/JobDetail/JobDetail.js:528
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:484
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:228
+#: screens/Template/shared/JobTemplateForm.js:393
+#: screens/Template/shared/WorkflowJobTemplateForm.js:205
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:335
msgid "Variables"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:121
+#: screens/Job/JobOutput/JobOutputSearch.js:131
msgid "Variables Prompted"
msgstr ""
+#: screens/Inventory/shared/Inventory.helptext.js:43
+msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two."
+msgstr ""
+
+#: screens/Inventory/shared/Inventory.helptext.js:166
+msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>{sourceType}1> plugin configuration guide."
+msgstr ""
+
#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121
msgid "Vault password"
msgstr ""
@@ -9204,21 +9689,21 @@ msgstr ""
msgid "Vault password | {credId}"
msgstr ""
-#: screens/Job/JobOutput/JobOutputSearch.js:126
+#: screens/Job/JobOutput/JobOutputSearch.js:132
msgid "Verbose"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:128
-#: components/LaunchPrompt/steps/OtherPromptsStep.js:147
-#: components/PromptDetail/PromptDetail.js:228
-#: components/PromptDetail/PromptInventorySourceDetail.js:118
-#: components/PromptDetail/PromptJobTemplateDetail.js:156
-#: components/Schedule/ScheduleDetail/ScheduleDetail.js:316
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:232
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87
-#: screens/Job/JobDetail/JobDetail.js:260
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:261
-#: screens/Template/shared/JobTemplateForm.js:461
+#: components/AdHocCommands/AdHocPreviewStep.js:63
+#: components/PromptDetail/PromptDetail.js:221
+#: components/PromptDetail/PromptInventorySourceDetail.js:111
+#: components/PromptDetail/PromptJobTemplateDetail.js:149
+#: components/Schedule/ScheduleDetail/ScheduleDetail.js:309
+#: components/VerbositySelectField/VerbositySelectField.js:47
+#: components/VerbositySelectField/VerbositySelectField.js:58
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:43
+#: screens/Job/JobDetail/JobDetail.js:326
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:264
msgid "Verbosity"
msgstr ""
@@ -9230,8 +9715,8 @@ msgstr ""
msgid "View Azure AD settings"
msgstr ""
-#: screens/Credential/Credential.js:131
#: screens/Credential/Credential.js:143
+#: screens/Credential/Credential.js:155
msgid "View Credential Details"
msgstr ""
@@ -9247,17 +9732,17 @@ msgstr ""
msgid "View Google OAuth 2.0 settings"
msgstr ""
-#: screens/Host/Host.js:136
+#: screens/Host/Host.js:137
msgid "View Host Details"
msgstr ""
-#: screens/Instances/Instance.js:40
+#: screens/Instances/Instance.js:41
msgid "View Instance Details"
msgstr ""
-#: screens/Inventory/Inventory.js:181
+#: screens/Inventory/Inventory.js:192
#: screens/Inventory/InventoryGroup/InventoryGroup.js:142
-#: screens/Inventory/SmartInventory.js:165
+#: screens/Inventory/SmartInventory.js:175
msgid "View Inventory Details"
msgstr ""
@@ -9269,11 +9754,11 @@ msgstr ""
msgid "View Inventory Host Details"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47
+#: screens/Inventory/shared/Inventory.helptext.js:55
msgid "View JSON examples at <0>www.json.org0>"
msgstr ""
-#: screens/Job/Job.js:182
+#: screens/Job/Job.js:183
msgid "View Job Details"
msgstr ""
@@ -9297,11 +9782,11 @@ msgstr ""
msgid "View Miscellaneous System settings"
msgstr ""
-#: screens/Organization/Organization.js:224
+#: screens/Organization/Organization.js:225
msgid "View Organization Details"
msgstr ""
-#: screens/Project/Project.js:196
+#: screens/Project/Project.js:200
msgid "View Project Details"
msgstr ""
@@ -9322,8 +9807,8 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: screens/Template/Template.js:158
-#: screens/Template/WorkflowJobTemplate.js:144
+#: screens/Template/Template.js:159
+#: screens/Template/WorkflowJobTemplate.js:145
msgid "View Survey"
msgstr ""
@@ -9331,12 +9816,12 @@ msgstr ""
msgid "View TACACS+ settings"
msgstr ""
-#: screens/Team/Team.js:117
+#: screens/Team/Team.js:118
msgid "View Team Details"
msgstr ""
-#: screens/Template/Template.js:259
-#: screens/Template/WorkflowJobTemplate.js:274
+#: screens/Template/Template.js:260
+#: screens/Template/WorkflowJobTemplate.js:275
msgid "View Template Details"
msgstr ""
@@ -9344,7 +9829,7 @@ msgstr ""
msgid "View Tokens"
msgstr ""
-#: screens/User/User.js:140
+#: screens/User/User.js:141
msgid "View User Details"
msgstr ""
@@ -9352,29 +9837,29 @@ msgstr ""
msgid "View User Interface settings"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApproval.js:104
+#: screens/WorkflowApproval/WorkflowApproval.js:102
msgid "View Workflow Approval Details"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58
+#: screens/Inventory/shared/Inventory.helptext.js:66
msgid "View YAML examples at <0>docs.ansible.com0>"
msgstr ""
-#: components/ScreenHeader/ScreenHeader.js:54
-#: components/ScreenHeader/ScreenHeader.js:57
+#: components/ScreenHeader/ScreenHeader.js:65
+#: components/ScreenHeader/ScreenHeader.js:68
msgid "View activity stream"
msgstr ""
-#: screens/Credential/Credential.js:92
+#: screens/Credential/Credential.js:99
msgid "View all Credentials."
msgstr ""
-#: screens/Host/Host.js:96
+#: screens/Host/Host.js:97
msgid "View all Hosts."
msgstr ""
-#: screens/Inventory/Inventory.js:92
-#: screens/Inventory/SmartInventory.js:93
+#: screens/Inventory/Inventory.js:95
+#: screens/Inventory/SmartInventory.js:95
msgid "View all Inventories."
msgstr ""
@@ -9386,7 +9871,7 @@ msgstr ""
msgid "View all Jobs"
msgstr ""
-#: screens/Job/Job.js:138
+#: screens/Job/Job.js:139
msgid "View all Jobs."
msgstr ""
@@ -9395,24 +9880,24 @@ msgstr ""
msgid "View all Notification Templates."
msgstr ""
-#: screens/Organization/Organization.js:154
+#: screens/Organization/Organization.js:155
msgid "View all Organizations."
msgstr ""
-#: screens/Project/Project.js:138
+#: screens/Project/Project.js:137
msgid "View all Projects."
msgstr ""
-#: screens/Team/Team.js:75
+#: screens/Team/Team.js:76
msgid "View all Teams."
msgstr ""
-#: screens/Template/Template.js:175
-#: screens/Template/WorkflowJobTemplate.js:175
+#: screens/Template/Template.js:176
+#: screens/Template/WorkflowJobTemplate.js:176
msgid "View all Templates."
msgstr ""
-#: screens/User/User.js:96
+#: screens/User/User.js:97
msgid "View all Users."
msgstr ""
@@ -9420,24 +9905,24 @@ msgstr ""
msgid "View all Workflow Approvals."
msgstr ""
-#: screens/Application/Application/Application.js:95
+#: screens/Application/Application/Application.js:96
msgid "View all applications."
msgstr ""
-#: screens/CredentialType/CredentialType.js:77
+#: screens/CredentialType/CredentialType.js:78
msgid "View all credential types"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84
+#: screens/ExecutionEnvironment/ExecutionEnvironment.js:85
msgid "View all execution environments"
msgstr ""
-#: screens/InstanceGroup/ContainerGroup.js:95
-#: screens/InstanceGroup/InstanceGroup.js:106
+#: screens/InstanceGroup/ContainerGroup.js:86
+#: screens/InstanceGroup/InstanceGroup.js:94
msgid "View all instance groups"
msgstr ""
-#: screens/ManagementJob/ManagementJob.js:134
+#: screens/ManagementJob/ManagementJob.js:135
msgid "View all management jobs"
msgstr ""
@@ -9474,14 +9959,14 @@ msgstr ""
msgid "View smart inventory host details"
msgstr ""
-#: routeConfig.js:29
-#: screens/ActivityStream/ActivityStream.js:137
+#: routeConfig.js:30
+#: screens/ActivityStream/ActivityStream.js:145
msgid "Views"
msgstr ""
-#: components/TemplateList/TemplateListItem.js:184
-#: components/TemplateList/TemplateListItem.js:190
-#: screens/Template/WorkflowJobTemplate.js:136
+#: components/TemplateList/TemplateListItem.js:198
+#: components/TemplateList/TemplateListItem.js:204
+#: screens/Template/WorkflowJobTemplate.js:137
msgid "Visualizer"
msgstr ""
@@ -9489,14 +9974,18 @@ msgstr ""
msgid "WARNING:"
msgstr ""
-#: components/JobList/JobList.js:225
-#: components/StatusLabel/StatusLabel.js:38
+#: components/JobList/JobList.js:229
+#: components/StatusLabel/StatusLabel.js:44
#: components/Workflow/WorkflowNodeHelp.js:96
msgid "Waiting"
msgstr ""
+#: screens/Job/JobOutput/EmptyOutput.js:23
+msgid "Waiting for job output…"
+msgstr ""
+
#: components/Workflow/WorkflowLegend.js:118
-#: screens/Job/JobOutput/JobOutputSearch.js:128
+#: screens/Job/JobOutput/JobOutputSearch.js:133
msgid "Warning"
msgstr ""
@@ -9504,94 +9993,104 @@ msgstr ""
msgid "Warning: Unsaved Changes"
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:118
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119
msgid "We were unable to locate licenses associated with this account."
msgstr ""
-#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:137
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138
msgid "We were unable to locate subscriptions associated with this account."
msgstr ""
-#: components/DetailList/LaunchedByDetail.js:53
+#: components/DetailList/LaunchedByDetail.js:24
#: components/NotificationList/NotificationList.js:202
-#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143
msgid "Webhook"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:179
+#: components/PromptDetail/PromptJobTemplateDetail.js:172
#: components/PromptDetail/PromptWFJobTemplateDetail.js:101
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:315
-#: screens/Template/shared/WebhookSubForm.js:205
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:326
+#: screens/Template/shared/WebhookSubForm.js:198
msgid "Webhook Credential"
msgstr ""
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:162
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:176
msgid "Webhook Credentials"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:175
+#: components/PromptDetail/PromptJobTemplateDetail.js:168
#: components/PromptDetail/PromptWFJobTemplateDetail.js:90
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:309
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:158
-#: screens/Template/shared/WebhookSubForm.js:175
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:319
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:169
+#: screens/Template/shared/WebhookSubForm.js:172
msgid "Webhook Key"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:168
+#: components/PromptDetail/PromptJobTemplateDetail.js:161
#: components/PromptDetail/PromptWFJobTemplateDetail.js:89
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:296
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:149
-#: screens/Template/shared/WebhookSubForm.js:127
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:157
+#: screens/Template/shared/WebhookSubForm.js:128
msgid "Webhook Service"
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:171
+#: components/PromptDetail/PromptJobTemplateDetail.js:164
#: components/PromptDetail/PromptWFJobTemplateDetail.js:93
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:303
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:154
-#: screens/Template/shared/WebhookSubForm.js:159
-#: screens/Template/shared/WebhookSubForm.js:169
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:312
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163
+#: screens/Template/shared/WebhookSubForm.js:160
+#: screens/Template/shared/WebhookSubForm.js:166
msgid "Webhook URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:655
-#: screens/Template/shared/WorkflowJobTemplateForm.js:250
+#: screens/Template/shared/JobTemplateForm.js:588
+#: screens/Template/shared/WorkflowJobTemplateForm.js:240
msgid "Webhook details"
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:162
+#: screens/Template/shared/JobTemplate.helptext.js:23
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:17
msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL."
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:178
+#: screens/Template/shared/JobTemplate.helptext.js:24
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:18
msgid "Webhook services can use this as a shared secret."
msgstr ""
-#: components/PromptDetail/PromptJobTemplateDetail.js:85
+#: components/PromptDetail/PromptJobTemplateDetail.js:78
#: components/PromptDetail/PromptWFJobTemplateDetail.js:41
-#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:147
-#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:140
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:63
msgid "Webhooks"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:278
+#: screens/Template/shared/WorkflowJobTemplate.helptext.js:24
+msgid "Webhooks: Enable Webhook for this workflow job template."
+msgstr ""
+
+#: screens/Template/shared/JobTemplate.helptext.js:39
+msgid "Webhooks: Enable webhook for this template."
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.js:281
msgid "Wed"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:283
-#: components/Schedule/shared/FrequencyDetailSubform.js:433
+#: components/Schedule/shared/FrequencyDetailSubform.js:286
+#: components/Schedule/shared/FrequencyDetailSubform.js:436
msgid "Wednesday"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:155
+#: components/Schedule/shared/ScheduleForm.js:157
msgid "Week"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:454
+#: components/Schedule/shared/FrequencyDetailSubform.js:457
msgid "Weekday"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:459
+#: components/Schedule/shared/FrequencyDetailSubform.js:462
msgid "Weekend day"
msgstr ""
@@ -9601,18 +10100,18 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Login/Login.js:147
+#: screens/Login/Login.js:168
msgid "Welcome to {brandName}!"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154
+#: screens/Inventory/shared/Inventory.helptext.js:105
msgid ""
"When not checked, a merge will be performed,\n"
"combining local variables with those found on the\n"
"external source."
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137
+#: screens/Inventory/shared/Inventory.helptext.js:93
msgid ""
"When not checked, local child\n"
"hosts and groups not found on the external source will remain\n"
@@ -9631,29 +10130,30 @@ msgstr ""
msgid "Workflow Approval not found."
msgstr ""
-#: routeConfig.js:53
-#: screens/ActivityStream/ActivityStream.js:148
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:165
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:202
-#: screens/WorkflowApproval/WorkflowApprovals.js:12
-#: screens/WorkflowApproval/WorkflowApprovals.js:21
+#: routeConfig.js:54
+#: screens/ActivityStream/ActivityStream.js:156
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:195
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:233
+#: screens/WorkflowApproval/WorkflowApprovals.js:13
+#: screens/WorkflowApproval/WorkflowApprovals.js:22
msgid "Workflow Approvals"
msgstr ""
-#: components/JobList/JobList.js:212
-#: components/JobList/JobListItem.js:41
+#: components/JobList/JobList.js:216
+#: components/JobList/JobListItem.js:47
#: components/Schedule/ScheduleList/ScheduleListItem.js:40
-#: screens/Job/JobDetail/JobDetail.js:74
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:124
+#: screens/Job/JobDetail/JobDetail.js:69
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:265
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:252
msgid "Workflow Job"
msgstr ""
-#: components/JobList/JobListItem.js:182
+#: components/JobList/JobListItem.js:201
#: components/Workflow/WorkflowNodeHelp.js:63
-#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:18
-#: screens/Job/JobDetail/JobDetail.js:134
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:111
-#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137
+#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:20
+#: screens/Job/JobDetail/JobDetail.js:224
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:91
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:227
#: util/getRelatedResourceDeleteDetails.js:104
msgid "Workflow Job Template"
msgstr ""
@@ -9672,27 +10172,27 @@ msgstr ""
msgid "Workflow Link"
msgstr ""
-#: components/TemplateList/TemplateList.js:203
+#: components/TemplateList/TemplateList.js:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:98
msgid "Workflow Template"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:503
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:514
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159
msgid "Workflow approved message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:515
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168
msgid "Workflow approved message body"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:527
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:538
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177
msgid "Workflow denied message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:539
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:550
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186
msgid "Workflow denied message body"
msgstr ""
@@ -9702,6 +10202,10 @@ msgstr ""
msgid "Workflow documentation"
msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:261
+msgid "Workflow job details"
+msgstr ""
+
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46
msgid "Workflow job templates"
msgstr ""
@@ -9714,49 +10218,49 @@ msgstr ""
msgid "Workflow node view modal"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:551
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:562
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195
msgid "Workflow pending message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:563
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:574
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204
msgid "Workflow pending message body"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:575
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:586
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213
msgid "Workflow timed out message"
msgstr ""
-#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:587
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:598
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222
msgid "Workflow timed out message body"
msgstr ""
-#: screens/User/shared/UserTokenForm.js:80
+#: screens/User/shared/UserTokenForm.js:77
msgid "Write"
msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44
+#: screens/Inventory/shared/Inventory.helptext.js:52
msgid "YAML:"
msgstr ""
-#: components/Schedule/shared/ScheduleForm.js:157
+#: components/Schedule/shared/ScheduleForm.js:159
msgid "Year"
msgstr ""
-#: components/Search/Search.js:211
+#: components/Search/Search.js:229
msgid "Yes"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
-msgstr ""
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}"
+#~ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:28
-msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
-msgstr ""
+#~ msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}"
+#~ msgstr ""
#: components/Lookup/MultiCredentialsLookup.js:154
msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID."
@@ -9770,7 +10274,7 @@ msgstr ""
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
-#: components/DisassociateButton/DisassociateButton.js:62
+#: components/DisassociateButton/DisassociateButton.js:66
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr ""
@@ -9780,7 +10284,7 @@ msgid ""
"message. For more information, refer to the"
msgstr ""
-#: screens/Login/Login.js:155
+#: screens/Login/Login.js:176
msgid "Your session has expired. Please log in to continue where you left off."
msgstr ""
@@ -9796,13 +10300,23 @@ msgstr ""
msgid "Zoom Out"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:752
-#: screens/Template/shared/WebhookSubForm.js:148
+#: screens/TopologyView/Header.js:51
+#: screens/TopologyView/Header.js:54
+msgid "Zoom in"
+msgstr ""
+
+#: screens/TopologyView/Header.js:63
+#: screens/TopologyView/Header.js:66
+msgid "Zoom out"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.js:685
+#: screens/Template/shared/WebhookSubForm.js:149
msgid "a new webhook key will be generated on save."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:749
-#: screens/Template/shared/WebhookSubForm.js:138
+#: screens/Template/shared/JobTemplateForm.js:682
+#: screens/Template/shared/WebhookSubForm.js:139
msgid "a new webhook url will be generated on save."
msgstr ""
@@ -9810,8 +10324,8 @@ msgstr ""
#~ msgid "actions"
#~ msgstr ""
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181
-#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210
+#: screens/Inventory/shared/Inventory.helptext.js:123
+#: screens/Inventory/shared/Inventory.helptext.js:142
msgid "and click on Update Revision on Launch"
msgstr ""
@@ -9832,7 +10346,7 @@ msgstr ""
msgid "cancel edit login redirect"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:233
+#: components/AdHocCommands/AdHocDetailsStep.js:217
msgid "command"
msgstr ""
@@ -9850,6 +10364,10 @@ msgstr ""
msgid "confirm edit login redirect"
msgstr ""
+#: screens/TopologyView/ContentLoading.js:32
+msgid "content-loading-in-progress"
+msgstr ""
+
#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:151
msgid "deletion error"
msgstr ""
@@ -9862,21 +10380,22 @@ msgstr ""
msgid "disassociate"
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369
-#: screens/Template/Survey/SurveyQuestionForm.js:263
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:230
+#: components/Lookup/HostFilterLookup.js:405
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:20
+#: screens/Template/Survey/SurveyQuestionForm.js:269
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:239
msgid "documentation"
msgstr ""
-#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103
-#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:113
-#: screens/Host/HostDetail/HostDetail.js:101
-#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95
-#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:105
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116
+#: screens/Host/HostDetail/HostDetail.js:102
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:109
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273
-#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161
-#: screens/Project/ProjectDetail/ProjectDetail.js:248
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:163
+#: screens/Project/ProjectDetail/ProjectDetail.js:291
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:165
#: screens/User/UserDetail/UserDetail.js:92
msgid "edit"
@@ -9887,28 +10406,43 @@ msgstr ""
#~ msgstr ""
#: screens/Template/Survey/SurveyListItem.js:65
+#: screens/Template/Survey/SurveyReorderModal.js:125
msgid "encrypted"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:232
+#: components/Lookup/HostFilterLookup.js:407
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:241
msgid "for more info."
msgstr ""
-#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:370
-#: screens/Template/Survey/SurveyQuestionForm.js:265
+#: screens/NotificationTemplate/shared/Notifications.helptext.js:21
+#: screens/Template/Survey/SurveyQuestionForm.js:271
msgid "for more information."
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:166
+#: screens/TopologyView/Legend.js:100
+msgid "h"
+msgstr ""
+
+#: components/AdHocCommands/AdHocDetailsStep.js:150
msgid "here"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:117
-#: components/AdHocCommands/AdHocDetailsStep.js:186
+#: components/AdHocCommands/AdHocDetailsStep.js:118
+#: components/AdHocCommands/AdHocDetailsStep.js:170
+#: screens/Job/Job.helptext.js:38
msgid "here."
msgstr ""
-#: components/Lookup/HostFilterLookup.js:371
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:49
+msgid "host-description-{0}"
+msgstr ""
+
+#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:44
+msgid "host-name-{0}"
+msgstr ""
+
+#: components/Lookup/HostFilterLookup.js:417
msgid "hosts"
msgstr ""
@@ -9924,7 +10458,7 @@ msgstr ""
msgid "login type"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:194
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:203
msgid "min"
msgstr ""
@@ -9940,12 +10474,16 @@ msgstr ""
msgid "new choice"
msgstr ""
+#: screens/TopologyView/Tooltip.js:94
+msgid "node"
+msgstr ""
+
#: components/Pagination/Pagination.js:36
-#: components/Schedule/shared/FrequencyDetailSubform.js:470
+#: components/Schedule/shared/FrequencyDetailSubform.js:473
msgid "of"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:231
+#: components/AdHocCommands/AdHocDetailsStep.js:215
msgid "option to the"
msgstr ""
@@ -9966,21 +10504,21 @@ msgstr ""
msgid "relaunch jobs"
msgstr ""
-#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:208
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:217
msgid "sec"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:253
msgid "seconds"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:57
+#: components/AdHocCommands/AdHocDetailsStep.js:58
msgid "select module"
msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.js:127
-msgid "select verbosity"
-msgstr ""
+#~ msgid "select verbosity"
+#~ msgstr ""
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135
msgid "since"
@@ -9990,8 +10528,8 @@ msgstr ""
msgid "social login"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.js:343
-#: screens/Template/shared/WorkflowJobTemplateForm.js:185
+#: screens/Template/shared/JobTemplateForm.js:339
+#: screens/Template/shared/WorkflowJobTemplateForm.js:183
msgid "source control branch"
msgstr ""
@@ -10003,7 +10541,7 @@ msgstr ""
msgid "timed out"
msgstr ""
-#: components/AdHocCommands/AdHocDetailsStep.js:211
+#: components/AdHocCommands/AdHocDetailsStep.js:195
msgid "toggle changes"
msgstr ""
@@ -10011,11 +10549,11 @@ msgstr ""
msgid "updated"
msgstr ""
-#: screens/Template/shared/WebhookSubForm.js:187
+#: screens/Template/shared/WebhookSubForm.js:180
msgid "workflow job template webhook key"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryListItem.js:61
+#: screens/Inventory/InventoryList/InventoryListItem.js:65
msgid "{0, plural, one {# source with sync failures.} other {# sources with sync failures.}}"
msgstr ""
@@ -10036,22 +10574,22 @@ msgid "{0, plural, one {Please enter a valid phone number.} other {Please enter
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175
-msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
-msgstr ""
+#~ msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}"
+#~ msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:232
+#: screens/Inventory/InventoryList/InventoryList.js:247
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/JobList.js:276
+#: components/JobList/JobList.js:280
msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}"
msgstr ""
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:208
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:239
msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
msgstr ""
-#: screens/Credential/CredentialList/CredentialList.js:178
+#: screens/Credential/CredentialList/CredentialList.js:198
msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
@@ -10059,19 +10597,19 @@ msgstr ""
msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
msgstr ""
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:180
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:194
msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:272
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:196
msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
-#: screens/Inventory/InventoryList/InventoryList.js:225
+#: screens/Inventory/InventoryList/InventoryList.js:240
msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.js:197
+#: screens/Inventory/InventorySources/InventorySourceList.js:196
msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
msgstr ""
@@ -10083,11 +10621,12 @@ msgstr ""
msgid "{0, plural, one {This organization is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
-#: screens/Project/ProjectList/ProjectList.js:238
+#: screens/Project/ProjectList/ProjectList.js:252
msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
-#: components/TemplateList/TemplateList.js:250
+#: components/RelatedTemplateList/RelatedTemplateList.js:209
+#: components/TemplateList/TemplateList.js:266
msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
msgstr ""
@@ -10123,9 +10662,9 @@ msgstr ""
msgid "{dateStr} by <0>{username}0>"
msgstr ""
-#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:220
+#: screens/InstanceGroup/InstanceDetails/InstanceDetails.js:224
#: screens/InstanceGroup/Instances/InstanceListItem.js:148
-#: screens/Instances/InstanceDetail/InstanceDetail.js:170
+#: screens/Instances/InstanceDetail/InstanceDetail.js:174
#: screens/Instances/InstanceList/InstanceListItem.js:158
msgid "{forks, plural, one {# fork} other {# forks}}"
msgstr ""
@@ -10134,27 +10673,27 @@ msgstr ""
#~ msgid "{hopNodeSelected, plural, one {Cannot run health check on a hop node. Deselect the hop node to run a health check.} other {Cannot run health check on hop nodes. Deselect the hop nodes to run health checks.}}"
#~ msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:190
+#: components/Schedule/shared/FrequencyDetailSubform.js:193
msgid "{intervalValue, plural, one {day} other {days}}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:188
+#: components/Schedule/shared/FrequencyDetailSubform.js:191
msgid "{intervalValue, plural, one {hour} other {hours}}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:186
+#: components/Schedule/shared/FrequencyDetailSubform.js:189
msgid "{intervalValue, plural, one {minute} other {minutes}}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:194
+#: components/Schedule/shared/FrequencyDetailSubform.js:197
msgid "{intervalValue, plural, one {month} other {months}}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:192
+#: components/Schedule/shared/FrequencyDetailSubform.js:195
msgid "{intervalValue, plural, one {week} other {weeks}}"
msgstr ""
-#: components/Schedule/shared/FrequencyDetailSubform.js:196
+#: components/Schedule/shared/FrequencyDetailSubform.js:199
msgid "{intervalValue, plural, one {year} other {years}}"
msgstr ""
@@ -10166,7 +10705,7 @@ msgstr ""
#~ msgid "{label} time"
#~ msgstr ""
-#: components/PromptDetail/PromptDetail.js:40
+#: components/PromptDetail/PromptDetail.js:41
msgid "{minutes} min {seconds} sec"
msgstr ""
diff --git a/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js b/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js
index f7d88a412c..db5a8008f3 100644
--- a/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js
+++ b/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js
@@ -29,6 +29,7 @@ import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDeta
import useIsMounted from 'hooks/useIsMounted';
import { formatDateString } from 'util/dates';
import Popover from 'components/Popover';
+import { VERBOSITY } from 'components/VerbositySelectField';
import InventorySourceSyncButton from '../shared/InventorySourceSyncButton';
import useWsInventorySourcesDetails from '../InventorySources/useWsInventorySourcesDetails';
import helpText from '../shared/Inventory.helptext';
@@ -111,12 +112,6 @@ function InventorySourceDetail({ inventorySource }) {
inventorySource.id
);
- const VERBOSITY = {
- 0: t`0 (Warning)`,
- 1: t`1 (Info)`,
- 2: t`2 (Debug)`,
- };
-
let optionsList = '';
if (
overwrite ||
@@ -251,7 +246,7 @@ function InventorySourceDetail({ inventorySource }) {
{
assertDetail(wrapper, 'Organization', 'Mock Org');
assertDetail(wrapper, 'Project', 'Mock Project');
assertDetail(wrapper, 'Inventory file', 'foo');
- assertDetail(wrapper, 'Verbosity', '2 (Debug)');
+ assertDetail(wrapper, 'Verbosity', '2 (More Verbose)');
assertDetail(wrapper, 'Cache timeout', '2 seconds');
const executionEnvironment = wrapper.find('ExecutionEnvironmentDetail');
expect(executionEnvironment).toHaveLength(1);
diff --git a/awx/ui/src/screens/Job/JobDetail/JobDetail.js b/awx/ui/src/screens/Job/JobDetail/JobDetail.js
index 24e064989f..262cec8d95 100644
--- a/awx/ui/src/screens/Job/JobDetail/JobDetail.js
+++ b/awx/ui/src/screens/Job/JobDetail/JobDetail.js
@@ -25,10 +25,10 @@ import { LaunchButton, ReLaunchDropDown } from 'components/LaunchButton';
import StatusLabel from 'components/StatusLabel';
import JobCancelButton from 'components/JobCancelButton';
import ExecutionEnvironmentDetail from 'components/ExecutionEnvironmentDetail';
+import { VERBOSITY } from 'components/VerbositySelectField';
import { getJobModel, isJobRunning } from 'util/jobs';
import { formatDateString } from 'util/dates';
import { Job } from 'types';
-import { VERBOSITY } from '../../../constants';
import jobHelpText from '../Job.helptext';
const StatusDetailValue = styled.div`
@@ -325,7 +325,7 @@ function JobDetail({ job, inventorySourceLabels }) {
dataCy="job-verbosity"
label={t`Verbosity`}
helpText={jobHelpText.verbosity}
- value={VERBOSITY[job.verbosity]}
+ value={VERBOSITY()[job.verbosity]}
/>
{job.type !== 'workflow_job' && !isJobRunning(job.status) && (
diff --git a/awx/ui/src/screens/Template/shared/JobTemplateForm.js b/awx/ui/src/screens/Template/shared/JobTemplateForm.js
index 9e76f30595..9aded8af1d 100644
--- a/awx/ui/src/screens/Template/shared/JobTemplateForm.js
+++ b/awx/ui/src/screens/Template/shared/JobTemplateForm.js
@@ -43,10 +43,10 @@ import Popover from 'components/Popover';
import { JobTemplatesAPI } from 'api';
import useIsMounted from 'hooks/useIsMounted';
import LabelSelect from 'components/LabelSelect';
+import { VerbositySelectField } from 'components/VerbositySelectField';
import PlaybookSelect from './PlaybookSelect';
import WebhookSubForm from './WebhookSubForm';
import helpText from './JobTemplate.helptext';
-import { VERBOSE_OPTIONS } from '../../../constants';
const { origin } = document.location;
@@ -86,7 +86,6 @@ function JobTemplateForm({
const [credentialField, , credentialHelpers] = useField('credentials');
const [labelsField, , labelsHelpers] = useField('labels');
const [limitField, limitMeta, limitHelpers] = useField('limit');
- const [verbosityField] = useField('verbosity');
const [diffModeField, , diffModeHelpers] = useField('diff_mode');
const [instanceGroupsField, , instanceGroupsHelpers] =
useField('instanceGroups');
@@ -422,19 +421,12 @@ function JobTemplateForm({
}}
/>
-
-
-
+ />