Properly tags Plural-able strings for translation, and removes unnecessary i18n

This commit is contained in:
Alex Corey
2021-04-13 11:58:55 -04:00
parent 8e579b2e74
commit 71500a6554
25 changed files with 21555 additions and 1143 deletions

View File

@@ -1,7 +1,6 @@
import React, { useState, useEffect, useCallback } from 'react';
import { useLocation } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t, plural } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card } from '@patternfly/react-core';
import AlertModal from '../AlertModal';
@@ -20,7 +19,7 @@ import JobListCancelButton from './JobListCancelButton';
import useWsJobs from './useWsJobs';
import { UnifiedJobsAPI } from '../../api';
function JobList({ i18n, defaultParams, showTypeColumn = false }) {
function JobList({ defaultParams, showTypeColumn = false }) {
const qsConfig = getQSConfig(
'job',
{
@@ -162,67 +161,65 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) {
hasContentLoading={isLoading || isDeleteLoading || isCancelLoading}
items={jobs}
itemCount={count}
pluralizedItemName={i18n._(t`Jobs`)}
pluralizedItemName={t`Jobs`}
qsConfig={qsConfig}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`ID`),
name: t`ID`,
key: 'id',
},
{
name: i18n._(t`Label Name`),
name: t`Label Name`,
key: 'labels__name__icontains',
},
{
name: i18n._(t`Job Type`),
name: t`Job Type`,
key: `or__type`,
options: [
[`project_update`, i18n._(t`Source Control Update`)],
[`inventory_update`, i18n._(t`Inventory Sync`)],
[`job`, i18n._(t`Playbook Run`)],
[`ad_hoc_command`, i18n._(t`Command`)],
[`system_job`, i18n._(t`Management Job`)],
[`workflow_job`, i18n._(t`Workflow Job`)],
[`project_update`, t`Source Control Update`],
[`inventory_update`, t`Inventory Sync`],
[`job`, t`Playbook Run`],
[`ad_hoc_command`, t`Command`],
[`system_job`, t`Management Job`],
[`workflow_job`, t`Workflow Job`],
],
},
{
name: i18n._(t`Launched By (Username)`),
name: t`Launched By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Status`),
name: t`Status`,
key: 'status',
options: [
[`new`, i18n._(t`New`)],
[`pending`, i18n._(t`Pending`)],
[`waiting`, i18n._(t`Waiting`)],
[`running`, i18n._(t`Running`)],
[`successful`, i18n._(t`Successful`)],
[`failed`, i18n._(t`Failed`)],
[`error`, i18n._(t`Error`)],
[`canceled`, i18n._(t`Canceled`)],
[`new`, t`New`],
[`pending`, t`Pending`],
[`waiting`, t`Waiting`],
[`running`, t`Running`],
[`successful`, t`Successful`],
[`failed`, t`Failed`],
[`error`, t`Error`],
[`canceled`, t`Canceled`],
],
},
{
name: i18n._(t`Limit`),
name: t`Limit`,
key: 'job__limit',
},
]}
headerRow={
<HeaderRow qsConfig={qsConfig} isExpandable>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell sortKey="status">{i18n._(t`Status`)}</HeaderCell>
{showTypeColumn && <HeaderCell>{i18n._(t`Type`)}</HeaderCell>}
<HeaderCell sortKey="started">{i18n._(t`Start Time`)}</HeaderCell>
<HeaderCell sortKey="finished">
{i18n._(t`Finish Time`)}
</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell sortKey="status">{t`Status`}</HeaderCell>
{showTypeColumn && <HeaderCell>{t`Type`}</HeaderCell>}
<HeaderCell sortKey="started">{t`Start Time`}</HeaderCell>
<HeaderCell sortKey="finished">{t`Finish Time`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
toolbarSearchableKeys={searchableKeys}
@@ -239,17 +236,18 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) {
key="delete"
onDelete={handleJobDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Jobs`)}
pluralizedItemName={t`Jobs`}
cannotDelete={item =>
isJobRunning(item.status) ||
!item.summary_fields.user_capabilities.delete
}
errorMessage={plural(cannotDeleteItems.length, {
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',
})}
errorMessage={
<Plural
value={cannotDeleteItems.length}
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"
/>
}
/>,
<JobListCancelButton
key="cancel"
@@ -275,10 +273,10 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) {
<AlertModal
isOpen
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more jobs.`)}
{t`Failed to delete one or more jobs.`}
<ErrorDetail error={deletionError} />
</AlertModal>
)}
@@ -286,10 +284,10 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) {
<AlertModal
isOpen
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={dismissCancelError}
>
{i18n._(t`Failed to cancel one or more jobs.`)}
{t`Failed to cancel one or more jobs.`}
<ErrorDetail error={cancelError} />
</AlertModal>
)}
@@ -297,4 +295,4 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) {
);
}
export default withI18n()(JobList);
export default JobList;

View File

@@ -320,10 +320,8 @@ describe('<JobList />', () => {
wrapper.update();
const deleteButton = wrapper.find('ToolbarDeleteButton');
expect(deleteButton.find('Tooltip').prop('content').props.children).toEqual(
'The selected jobs cannot be deleted due to insufficient permissions or a running job status: job 1, job 2'
);
const deleteButton = wrapper.find('ToolbarDeleteButton').find('Button');
expect(deleteButton.prop('isDisabled')).toBe(true);
jest.restoreAllMocks();
});

View File

@@ -145,11 +145,16 @@ function ToolbarDeleteButton({
if (itemsToDelete.some(cannotDelete)) {
return (
<div>
{errorMessage
? `${errorMessage}: ${itemsUnableToDelete}`
: i18n._(
t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}`
)}
{errorMessage ? (
<>
<span>{errorMessage}</span>
<span>{`: ${itemsUnableToDelete}`}</span>
</>
) : (
i18n._(
t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}`
)
)}
</div>
);
}
@@ -303,14 +308,12 @@ ToolbarDeleteButton.propTypes = {
onDelete: func.isRequired,
itemsToDelete: arrayOf(ItemToDelete).isRequired,
pluralizedItemName: string,
errorMessage: string,
warningMessage: node,
cannotDelete: func,
};
ToolbarDeleteButton.defaultProps = {
pluralizedItemName: 'Items',
errorMessage: '',
warningMessage: null,
cannotDelete: item => !item.summary_fields.user_capabilities.delete,
};

View File

@@ -1,5 +1,6 @@
import React from 'react';
import { act } from 'react-dom/test-utils';
import {
mountWithContexts,
waitForElement,

View File

@@ -1,7 +1,6 @@
import React, { Fragment, useEffect, useState, useCallback } from 'react';
import { useLocation, Link } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, DropdownItem } from '@patternfly/react-core';
import {
JobTemplatesAPI,
@@ -20,7 +19,7 @@ import AddDropDownButton from '../AddDropDownButton';
import TemplateListItem from './TemplateListItem';
import { relatedResourceDeleteRequests } from '../../util/getRelatedResourceDeleteDetails';
function TemplateList({ defaultParams, i18n }) {
function TemplateList({ defaultParams }) {
// The type value in const qsConfig below does not have a space between job_template and
// workflow_job_template so the params sent to the API match what the api expects.
const qsConfig = getQSConfig(
@@ -138,8 +137,8 @@ function TemplateList({ defaultParams, i18n }) {
const canAddWFJT =
wfjtActions && Object.prototype.hasOwnProperty.call(wfjtActions, 'POST');
const addTemplate = i18n._(t`Add job template`);
const addWFTemplate = i18n._(t`Add workflow template`);
const addTemplate = t`Add job template`;
const addWFTemplate = t`Add workflow template`;
const addDropDownButton = [];
if (canAddJT) {
addDropDownButton.push(
@@ -181,37 +180,37 @@ function TemplateList({ defaultParams, i18n }) {
hasContentLoading={isLoading || isDeleteLoading}
items={templates}
itemCount={count}
pluralizedItemName={i18n._(t`Templates`)}
pluralizedItemName={t`Templates`}
qsConfig={qsConfig}
onRowClick={handleSelect}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Type`),
name: t`Type`,
key: 'or__type',
options: [
[`job_template`, i18n._(t`Job Template`)],
[`workflow_job_template`, i18n._(t`Workflow Template`)],
[`job_template`, t`Job Template`],
[`workflow_job_template`, t`Workflow Template`],
],
},
{
name: i18n._(t`Playbook name`),
name: t`Playbook name`,
key: 'job_template__playbook__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
]}
@@ -219,12 +218,10 @@ function TemplateList({ defaultParams, i18n }) {
toolbarRelatedSearchableKeys={relatedSearchableKeys}
headerRow={
<HeaderRow qsConfig={qsConfig} isExpandable>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell sortKey="type">{i18n._(t`Type`)}</HeaderCell>
<HeaderCell sortKey="last_job_run">
{i18n._(t`Last Ran`)}
</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell sortKey="type">{t`Type`}</HeaderCell>
<HeaderCell sortKey="last_job_run">{t`Last Ran`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderToolbar={props => (
@@ -240,12 +237,15 @@ function TemplateList({ defaultParams, i18n }) {
key="delete"
onDelete={handleTemplateDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Templates`)}
pluralizedItemName={t`Templates`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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?"
/>
}
/>,
]}
/>
@@ -266,17 +266,17 @@ function TemplateList({ defaultParams, i18n }) {
/>
</Card>
<AlertModal
aria-label={i18n._(t`Deletion Error`)}
aria-label={t`Deletion Error`}
isOpen={deletionError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more templates.`)}
{t`Failed to delete one or more templates.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</Fragment>
);
}
export default withI18n()(TemplateList);
export default TemplateList;

View File

@@ -219,9 +219,9 @@ msgstr "Action"
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -235,9 +235,9 @@ msgstr "Action"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -317,7 +317,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.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr "Add container group"
@@ -329,15 +329,15 @@ msgstr "Add existing group"
msgid "Add existing host"
msgstr "Add existing host"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr "Add instance group"
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr "Add inventory"
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr "Add job template"
@@ -353,7 +353,7 @@ msgstr "Add new host"
msgid "Add resource type"
msgstr "Add resource type"
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr "Add smart inventory"
@@ -365,7 +365,7 @@ msgstr "Add team permissions"
msgid "Add user permissions"
msgstr "Add user permissions"
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr "Add workflow template"
@@ -893,7 +893,7 @@ msgstr "Cache timeout (seconds)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -988,7 +988,7 @@ msgstr "Cancel sync process"
msgid "Cancel sync source"
msgstr "Cancel sync source"
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1550,7 +1550,7 @@ msgstr "Create user token"
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1590,14 +1590,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1606,12 +1606,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1951,7 +1951,7 @@ msgstr "Delete application"
msgid "Delete credential type"
msgstr "Delete credential type"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr "Delete error"
@@ -2005,7 +2005,7 @@ msgstr "Delete this node"
#~ msgid "Delete {itemName}"
#~ msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr "Delete {pluralizedItemName}?"
@@ -2016,15 +2016,15 @@ msgid "Deleted"
msgstr "Deleted"
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr "Deletion Error"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr "Deletion error"
@@ -2076,7 +2076,7 @@ msgstr "Deprecated"
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -2090,7 +2090,7 @@ msgstr "Deprecated"
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -2108,7 +2108,7 @@ msgstr "Deprecated"
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr ""
@@ -2867,12 +2867,12 @@ msgstr "Enter variables using either JSON or YAML syntax. Use the radio button t
#~ msgid "Environment"
#~ msgstr "Environment"
#: components/JobList/JobList.jsx:207
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
@@ -2906,7 +2906,7 @@ msgstr "Error saving the workflow!"
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2920,7 +2920,7 @@ msgstr "Error saving the workflow!"
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2934,11 +2934,11 @@ msgstr "Error saving the workflow!"
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2952,7 +2952,7 @@ msgstr "Error saving the workflow!"
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2974,8 +2974,8 @@ msgstr "Error saving the workflow!"
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr "Error!"
@@ -3156,7 +3156,7 @@ msgstr "FINISHED:"
msgid "Facts"
msgstr "Facts"
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -3177,7 +3177,7 @@ msgstr "Failed Hosts"
msgid "Failed hosts"
msgstr "Failed hosts"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr "Failed to approve one or more workflow approval."
@@ -3206,7 +3206,7 @@ msgstr "Failed to associate."
msgid "Failed to cancel inventory source sync."
msgstr "Failed to cancel inventory source sync."
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr "Failed to cancel one or more jobs."
@@ -3268,15 +3268,15 @@ msgstr "Failed to delete notification."
msgid "Failed to delete one or more applications."
msgstr "Failed to delete one or more applications."
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr "Failed to delete one or more credential types."
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr "Failed to delete one or more credentials."
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr "Failed to delete one or more execution environments"
@@ -3289,15 +3289,15 @@ msgstr "Failed to delete one or more groups."
msgid "Failed to delete one or more hosts."
msgstr "Failed to delete one or more hosts."
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr "Failed to delete one or more instance groups."
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr "Failed to delete one or more inventories."
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr "Failed to delete one or more inventory sources."
@@ -3305,7 +3305,7 @@ msgstr "Failed to delete one or more inventory sources."
msgid "Failed to delete one or more job templates."
msgstr "Failed to delete one or more job templates."
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr "Failed to delete one or more jobs."
@@ -3313,11 +3313,11 @@ msgstr "Failed to delete one or more jobs."
msgid "Failed to delete one or more notification template."
msgstr "Failed to delete one or more notification template."
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr "Failed to delete one or more organizations."
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr "Failed to delete one or more projects."
@@ -3345,7 +3345,7 @@ 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.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr "Failed to delete one or more workflow approval."
@@ -3395,7 +3395,7 @@ msgstr "Failed to delete workflow job template."
msgid "Failed to delete {name}."
msgstr "Failed to delete {name}."
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr "Failed to deny one or more workflow approval."
@@ -3455,7 +3455,7 @@ msgstr "Failed to sync inventory source."
msgid "Failed to sync project."
msgstr "Failed to sync project."
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr "Failed to sync some or all inventory sources."
@@ -3666,7 +3666,7 @@ msgstr "Get subscriptions"
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr "Git"
@@ -3955,7 +3955,7 @@ msgstr "Hour"
msgid "I agree to the End User License Agreement"
msgstr "I agree to the End User License Agreement"
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -4257,7 +4257,7 @@ msgstr "Instance Group"
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -4321,8 +4321,8 @@ msgstr ""
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4390,8 +4390,8 @@ msgstr "Inventory Source"
msgid "Inventory Source Sync"
msgstr "Inventory Source Sync"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4482,7 +4482,7 @@ msgstr "JSON:"
msgid "January"
msgstr "January"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr "Job"
@@ -4556,7 +4556,7 @@ 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.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4582,8 +4582,8 @@ msgstr "Job status graph tab"
msgid "Job templates"
msgstr "Job templates"
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4693,7 +4693,7 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr "Label Name"
@@ -4821,7 +4821,7 @@ msgstr "Launch workflow"
msgid "Launched By"
msgstr "Launched By"
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr "Launched By (Username)"
@@ -4857,7 +4857,7 @@ msgstr "Less than or equal to comparison."
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -5021,7 +5021,7 @@ msgstr "Maximum length"
msgid "May"
msgstr "May"
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr ""
@@ -5119,14 +5119,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -5135,12 +5135,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -5280,15 +5280,15 @@ msgstr "Multiple Choice Options"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -5323,9 +5323,9 @@ msgstr "Multiple Choice Options"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -5349,8 +5349,8 @@ msgstr "Multiple Choice Options"
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -5358,8 +5358,8 @@ msgstr "Multiple Choice Options"
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5383,8 +5383,8 @@ msgstr "Multiple Choice Options"
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr ""
@@ -5408,7 +5408,7 @@ msgstr "Never Updated"
msgid "Never expires"
msgstr "Never expires"
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr "New"
@@ -5811,7 +5811,7 @@ msgstr "Options"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5990,7 +5990,7 @@ msgstr "Past two weeks"
msgid "Past week"
msgstr "Past week"
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr "Pending"
@@ -6059,7 +6059,7 @@ msgstr "Playbook Run"
msgid "Playbook Started"
msgstr "Playbook Started"
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -6246,8 +6246,8 @@ msgstr "Project sync failures"
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -6411,7 +6411,7 @@ msgstr "Recipient list"
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr "Red Hat Insights"
@@ -6521,7 +6521,7 @@ msgstr "Relaunch using host parameters"
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr "Remote Archive"
@@ -6755,7 +6755,7 @@ msgstr "Running"
msgid "Running Handlers"
msgstr "Running Handlers"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr "Running Jobs"
@@ -7060,7 +7060,7 @@ msgstr "Select a project before editing the execution environment."
msgid "Select a row to approve"
msgstr "Select a row to approve"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -7784,11 +7784,11 @@ msgstr "Started"
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr "Status"
@@ -7857,7 +7857,7 @@ msgstr "Subscriptions table"
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr "Subversion"
@@ -7878,7 +7878,7 @@ msgstr "Success message"
msgid "Success message body"
msgstr "Success message body"
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7934,16 +7934,16 @@ msgstr "Sync"
msgid "Sync Project"
msgstr "Sync Project"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr "Sync all"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr "Sync all sources"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr "Sync error"
@@ -8078,7 +8078,7 @@ msgstr "Team not found."
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -8103,8 +8103,8 @@ msgstr "Template not found."
msgid "Template type"
msgstr "Template type"
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -8291,7 +8291,7 @@ msgstr ""
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr "The tower instance group cannot be deleted."
@@ -8336,8 +8336,8 @@ msgid "There was an error testing the log aggregator."
msgstr "There was an error testing the log aggregator."
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
msgstr "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#~ msgstr "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -8359,7 +8359,7 @@ msgstr "These arguments are used with the specified module. You can find informa
msgid "Third"
msgstr "Third"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "This action will delete the following:"
@@ -8787,7 +8787,7 @@ msgstr "Twilio"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8796,15 +8796,15 @@ msgstr "Twilio"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -9366,7 +9366,7 @@ msgstr "Visualizer"
msgid "WARNING:"
msgstr "WARNING:"
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr "Waiting"
@@ -9560,7 +9560,7 @@ msgstr "Workflow Job Templates"
msgid "Workflow Link"
msgstr "Workflow Link"
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr "Workflow Template"
@@ -9658,11 +9658,11 @@ msgstr "You do not have permission to delete the following Groups: {itemsUnableT
#~ msgid "You do not have permission to delete the following {0}: {itemsUnableToDelete}"
#~ msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
@@ -9755,7 +9755,7 @@ msgstr ""
msgid "command"
msgstr "command"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -10033,11 +10033,11 @@ msgstr "{0, plural, one {Are you sure you want delete the group below?} other {A
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr "{0, plural, one {Delete Group?} other {Delete Groups?}}"
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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}}"

View File

@@ -196,9 +196,9 @@ msgstr ""
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -212,9 +212,9 @@ msgstr ""
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -294,7 +294,7 @@ msgstr ""
msgid "Add a new node between these two nodes"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr ""
@@ -306,15 +306,15 @@ msgstr ""
msgid "Add existing host"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr ""
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr ""
@@ -330,7 +330,7 @@ msgstr ""
msgid "Add resource type"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr ""
@@ -342,7 +342,7 @@ msgstr ""
msgid "Add user permissions"
msgstr ""
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr ""
@@ -844,7 +844,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -939,7 +939,7 @@ msgstr ""
msgid "Cancel sync source"
msgstr ""
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1472,7 +1472,7 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1512,14 +1512,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1528,12 +1528,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1873,7 +1873,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr ""
@@ -1915,7 +1915,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1926,15 +1926,15 @@ msgid "Deleted"
msgstr ""
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr ""
@@ -1986,7 +1986,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -2000,7 +2000,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -2018,7 +2018,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr ""
@@ -2747,12 +2747,12 @@ msgstr ""
#~ msgid "Environment"
#~ msgstr ""
#: components/JobList/JobList.jsx:207
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
@@ -2786,7 +2786,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2800,7 +2800,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2814,11 +2814,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2832,7 +2832,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2854,8 +2854,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr ""
@@ -3036,7 +3036,7 @@ msgstr ""
msgid "Facts"
msgstr ""
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -3057,7 +3057,7 @@ msgstr ""
msgid "Failed hosts"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr ""
@@ -3086,7 +3086,7 @@ msgstr ""
msgid "Failed to cancel inventory source sync."
msgstr ""
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr ""
@@ -3148,15 +3148,15 @@ msgstr ""
msgid "Failed to delete one or more applications."
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr ""
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3169,15 +3169,15 @@ msgstr ""
msgid "Failed to delete one or more hosts."
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3185,7 +3185,7 @@ msgstr ""
msgid "Failed to delete one or more job templates."
msgstr ""
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr ""
@@ -3193,11 +3193,11 @@ msgstr ""
msgid "Failed to delete one or more notification template."
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr ""
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr ""
@@ -3225,7 +3225,7 @@ msgstr ""
msgid "Failed to delete one or more users."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr ""
@@ -3275,7 +3275,7 @@ msgstr ""
msgid "Failed to delete {name}."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr ""
@@ -3335,7 +3335,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3539,7 +3539,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr ""
@@ -3828,7 +3828,7 @@ msgstr ""
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -4096,7 +4096,7 @@ msgstr ""
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -4156,8 +4156,8 @@ msgstr ""
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4220,8 +4220,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4304,7 +4304,7 @@ msgstr ""
msgid "January"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr ""
@@ -4378,7 +4378,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4404,8 +4404,8 @@ msgstr ""
msgid "Job templates"
msgstr ""
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4511,7 +4511,7 @@ msgstr ""
msgid "LDAP5"
msgstr ""
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr ""
@@ -4639,7 +4639,7 @@ msgstr ""
msgid "Launched By"
msgstr ""
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr ""
@@ -4675,7 +4675,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4835,7 +4835,7 @@ msgstr ""
msgid "May"
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr ""
@@ -4929,14 +4929,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4945,12 +4945,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -5085,15 +5085,15 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -5128,9 +5128,9 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -5154,8 +5154,8 @@ msgstr ""
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -5163,8 +5163,8 @@ msgstr ""
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5188,8 +5188,8 @@ msgstr ""
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr ""
@@ -5213,7 +5213,7 @@ msgstr ""
msgid "Never expires"
msgstr ""
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr ""
@@ -5592,7 +5592,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5743,7 +5743,7 @@ msgstr ""
msgid "Past week"
msgstr ""
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr ""
@@ -5808,7 +5808,7 @@ msgstr ""
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5970,8 +5970,8 @@ msgstr ""
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -6121,7 +6121,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr ""
@@ -6229,7 +6229,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr ""
@@ -6461,7 +6461,7 @@ msgstr ""
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr ""
@@ -6760,7 +6760,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -7450,11 +7450,11 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr ""
@@ -7517,7 +7517,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr ""
@@ -7538,7 +7538,7 @@ msgstr ""
msgid "Success message body"
msgstr ""
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7594,16 +7594,16 @@ msgstr ""
msgid "Sync Project"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr ""
@@ -7725,7 +7725,7 @@ msgstr ""
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7750,8 +7750,8 @@ msgstr ""
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7915,7 +7915,7 @@ msgstr ""
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr ""
@@ -7954,8 +7954,8 @@ msgid "There was an error testing the log aggregator."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
msgstr ""
#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#~ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7977,7 +7977,7 @@ msgstr ""
msgid "Third"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -8386,7 +8386,7 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8395,15 +8395,15 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8954,7 +8954,7 @@ msgstr ""
msgid "WARNING:"
msgstr ""
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr ""
@@ -9140,7 +9140,7 @@ msgstr ""
msgid "Workflow Link"
msgstr ""
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr ""
@@ -9234,11 +9234,11 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr ""
@@ -9317,7 +9317,7 @@ msgstr ""
msgid "command"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9563,11 +9563,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -187,9 +187,9 @@ msgstr "Action"
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -203,9 +203,9 @@ msgstr "Action"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -285,7 +285,7 @@ msgstr "Ajouter un nouveau noeud"
msgid "Add a new node between these two nodes"
msgstr "Ajouter un nouveau nœud entre ces deux nœuds"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr "Ajouter un groupe de conteneurs"
@@ -297,15 +297,15 @@ msgstr "Ajouter un groupe existant"
msgid "Add existing host"
msgstr "Ajouter une hôte existant"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr "Ajouter un groupe d'instances"
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr "Ajouter un inventaire"
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr "Ajouter un modèle de job"
@@ -321,7 +321,7 @@ msgstr "Ajouter un nouvel hôte"
msgid "Add resource type"
msgstr "Ajouter un type de ressource"
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr "Ajouter un inventaire smart"
@@ -333,7 +333,7 @@ msgstr "Ajouter les permissions de l'équipe"
msgid "Add user permissions"
msgstr "Ajouter les permissions de lutilisateur"
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr "Ajouter un modèle de flux de travail"
@@ -825,7 +825,7 @@ msgstr "Expiration du délai dattente du cache (secondes)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -920,7 +920,7 @@ msgstr "Annuler le processus de synchronisation"
msgid "Cancel sync source"
msgstr "Annuler la source de synchronisation"
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1293,6 +1293,10 @@ msgstr "Copyright 2019 Red Hat, Inc."
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
#: components/About/About.jsx:35
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
#: screens/Template/shared/JobTemplateForm.jsx:383
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
@@ -1425,7 +1429,7 @@ msgstr "Créer un jeton d'utilisateur"
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1465,14 +1469,14 @@ msgstr "Créé"
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1481,12 +1485,12 @@ msgstr "Créé"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1826,7 +1830,7 @@ msgstr "Supprimer lapplication"
msgid "Delete credential type"
msgstr "Supprimer le type d'informations didentification"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr "Supprimer l'erreur"
@@ -1864,7 +1868,7 @@ msgstr "Supprimer ce lien"
msgid "Delete this node"
msgstr "Supprimer ce nœud"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr "Supprimer {pluralizedItemName} ?"
@@ -1875,15 +1879,15 @@ msgid "Deleted"
msgstr "Supprimé"
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr "Erreur de suppression"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr "Erreur de suppression"
@@ -1935,7 +1939,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -1949,7 +1953,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -1967,7 +1971,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr "Description"
@@ -2684,7 +2688,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2698,7 +2702,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2712,11 +2716,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2730,7 +2734,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2752,8 +2756,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr "Erreur !"
@@ -2930,7 +2934,7 @@ msgstr "TERMINÉ :"
msgid "Facts"
msgstr "Faits"
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -2951,7 +2955,7 @@ msgstr "Échec Hôtes"
msgid "Failed hosts"
msgstr "Échec des hôtes"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr "N'a pas approuvé un ou plusieurs flux de travail."
@@ -2980,7 +2984,7 @@ msgstr "N'a pas réussi à associer."
msgid "Failed to cancel inventory source sync."
msgstr "N'a pas réussi à annuler la synchronisation des sources d'inventaire."
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs"
@@ -3042,15 +3046,15 @@ msgstr "N'a pas réussi à supprimer la notification."
msgid "Failed to delete one or more applications."
msgstr "N'a pas réussi à supprimer une ou plusieurs applications"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr "N'a pas réussi à supprimer un ou plusieurs types didentifiants."
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr "N'a pas réussi à supprimer un ou plusieurs identifiants."
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3063,15 +3067,15 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs groupes."
msgid "Failed to delete one or more hosts."
msgstr "N'a pas réussi à supprimer un ou plusieurs hôtes."
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr "N'a pas réussi à supprimer un ou plusieurs groupes d'instances."
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr "N'a pas réussi à supprimer un ou plusieurs inventaires."
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire."
@@ -3079,7 +3083,7 @@ msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire."
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.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs."
@@ -3087,11 +3091,11 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs."
msgid "Failed to delete one or more notification template."
msgstr "N'a pas réussi à supprimer un ou plusieurs modèles de notification."
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr "N'a pas réussi à supprimer une ou plusieurs organisations."
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr "N'a pas réussi à supprimer un ou plusieurs projets."
@@ -3119,7 +3123,7 @@ 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.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr "N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail."
@@ -3169,7 +3173,7 @@ 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 {0}."
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr "N'a pas refusé d'approuver un ou plusieurs flux de travail."
@@ -3229,7 +3233,7 @@ msgstr "Impossible de synchroniser la source de l'inventaire."
msgid "Failed to sync project."
msgstr "Échec de la synchronisation du projet."
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
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."
@@ -3433,7 +3437,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr "Git"
@@ -3722,7 +3726,7 @@ msgstr "Heure"
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -3952,7 +3956,7 @@ msgstr "Groupe d'instance"
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -4012,8 +4016,8 @@ msgstr "Nom dutilisateur et/ou mot de passe non valide. Veuillez réessayer."
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4076,8 +4080,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "Sync Source dinventaire"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4160,7 +4164,7 @@ msgstr "JSON :"
msgid "January"
msgstr "Janvier"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr "Job"
@@ -4234,7 +4238,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4260,8 +4264,8 @@ msgstr "Onglet Graphique de l'état des Jobs"
msgid "Job templates"
msgstr "Modèles de Jobs"
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4367,7 +4371,7 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr "Nom du label"
@@ -4495,7 +4499,7 @@ msgstr "Lancer le flux de travail"
msgid "Launched By"
msgstr "Lancé par"
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr "Lancé par (Nom d'utilisateur)"
@@ -4533,7 +4537,7 @@ msgstr "Paramètres de la licence"
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4693,7 +4697,7 @@ msgstr "Longueur maximale"
msgid "May"
msgstr "Mai"
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr "Membres"
@@ -4781,14 +4785,14 @@ msgstr "Modifié"
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4797,12 +4801,12 @@ msgstr "Modifié"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -4937,15 +4941,15 @@ msgstr "Options à choix multiples."
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -4980,9 +4984,9 @@ msgstr "Options à choix multiples."
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -5006,8 +5010,8 @@ msgstr "Options à choix multiples."
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -5015,8 +5019,8 @@ msgstr "Options à choix multiples."
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5040,8 +5044,8 @@ msgstr "Options à choix multiples."
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr "Nom"
@@ -5065,7 +5069,7 @@ msgstr "Jamais mis à jour"
msgid "Never expires"
msgstr "N'expire jamais"
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr "Nouveau"
@@ -5426,7 +5430,7 @@ msgstr "Options"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5577,7 +5581,7 @@ msgstr "Les deux dernières semaines"
msgid "Past week"
msgstr "La semaine dernière"
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr "En attente"
@@ -5642,7 +5646,7 @@ msgstr "Exécution du playbook"
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5800,8 +5804,8 @@ msgstr "Erreurs de synchronisation du projet"
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -5939,7 +5943,7 @@ msgstr "Liste de destinataires"
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr "Red Hat Insights"
@@ -6037,7 +6041,7 @@ msgstr "Relancer en utilisant les paramètres de l'hôte"
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr "Archive à distance"
@@ -6267,7 +6271,7 @@ msgstr "En cours d'exécution"
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr "Jobs en cours d'exécution"
@@ -6564,7 +6568,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "Sélectionnez une ligne à approuver"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "Sélectionnez une ligne à supprimer"
@@ -7207,11 +7211,11 @@ msgstr "Démarré"
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr "État"
@@ -7274,7 +7278,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr "Subversion"
@@ -7295,7 +7299,7 @@ msgstr "Message de réussite"
msgid "Success message body"
msgstr "Corps du message de réussite"
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7351,16 +7355,16 @@ msgstr "Sync"
msgid "Sync Project"
msgstr "Projet Sync"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr "Tout sync"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr "Synchroniser toutes les sources"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr "Erreur de synchronisation"
@@ -7482,7 +7486,7 @@ msgstr "Équipe non trouvée."
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7507,8 +7511,8 @@ msgstr "Mise à jour introuvable"
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7632,7 +7636,7 @@ msgstr "Le format suggéré pour les noms de variables est en minuscules avec de
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr "Le groupe d'instances de Tower ne peut pas être supprimé."
@@ -7688,7 +7692,7 @@ msgstr "Ces arguments sont utilisés avec le module spécifié. Vous pouvez trou
msgid "Third"
msgstr "Troisième"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "Cette action supprimera les éléments suivants :"
@@ -8019,7 +8023,7 @@ msgstr "Outils"
msgid "Top Pagination"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr "Total Jobs"
@@ -8086,7 +8090,7 @@ msgstr "Twilio"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8095,15 +8099,15 @@ msgstr "Twilio"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8643,7 +8647,7 @@ msgstr "Visualiseur"
msgid "WARNING:"
msgstr "AVERTISSEMENT :"
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr "En attente"
@@ -8821,7 +8825,7 @@ msgstr ""
msgid "Workflow Link"
msgstr "Lien vers le flux de travail"
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr "Modèle de flux de travail"
@@ -8915,11 +8919,11 @@ msgstr "Vous ne pouvez pas sélectionner plusieurs identifiants darchivage s
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "Vous n'avez pas la permission de supprimer les groupes suivants : {itemsUnableToDelete}"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableToDelete}"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableToDelete}"
@@ -8983,7 +8987,7 @@ msgstr "approuvé"
msgid "brand logo"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "annuler supprimer"
@@ -8992,7 +8996,7 @@ msgstr "annuler supprimer"
msgid "command"
msgstr "commande"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "confirmer supprimer"
@@ -9226,11 +9230,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -182,9 +182,9 @@ msgstr "アクション"
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -198,9 +198,9 @@ msgstr "アクション"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -280,7 +280,7 @@ msgstr "新規ノードの追加"
msgid "Add a new node between these two nodes"
msgstr "これら 2 つのノードの間に新しいノードを追加します"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr "コンテナーグループの追加"
@@ -292,15 +292,15 @@ msgstr "既存グループの追加"
msgid "Add existing host"
msgstr "既存ホストの追加"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr "インスタンスグループの追加"
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr "インベントリーの追加"
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr "新規ジョブテンプレートの追加"
@@ -316,7 +316,7 @@ msgstr "新規ホストの追加"
msgid "Add resource type"
msgstr "リソースタイプの追加"
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr "スマートインベントリーの追加"
@@ -328,7 +328,7 @@ msgstr "チームパーミッションの追加"
msgid "Add user permissions"
msgstr "ユーザー権限の追加"
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr "ワークフローテンプレートの追加"
@@ -820,7 +820,7 @@ msgstr "キャッシュのタイムアウト (秒)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -915,7 +915,7 @@ msgstr "同期プロセスの取り消し"
msgid "Cancel sync source"
msgstr "同期プロセスの取り消し"
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1412,7 +1412,7 @@ msgstr "ユーザートークンの作成"
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1452,14 +1452,14 @@ msgstr "作成済み"
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1468,12 +1468,12 @@ msgstr "作成済み"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1805,7 +1805,7 @@ msgstr "アプリケーションの削除"
msgid "Delete credential type"
msgstr "認証情報タイプの削除"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr "エラーの削除"
@@ -1843,7 +1843,7 @@ msgstr "このリンクの削除"
msgid "Delete this node"
msgstr "このノードの削除"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr "{pluralizedItemName} を削除しますか?"
@@ -1854,15 +1854,15 @@ msgid "Deleted"
msgstr "削除済み"
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr "削除エラー"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr "削除エラー"
@@ -1914,7 +1914,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -1928,7 +1928,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -1946,7 +1946,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr "説明"
@@ -2627,12 +2627,12 @@ msgstr "JSON または YAML 構文のいずれかを使用して変数を入力
msgid "Environment"
msgstr "環境"
#: components/JobList/JobList.jsx:207
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
@@ -2666,7 +2666,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2680,7 +2680,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2694,11 +2694,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2712,7 +2712,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2734,8 +2734,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr "エラー!"
@@ -2912,7 +2912,7 @@ msgstr "終了日時:"
msgid "Facts"
msgstr "ファクト"
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -2933,7 +2933,7 @@ msgstr "失敗したホスト"
msgid "Failed hosts"
msgstr "失敗したホスト"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を承認できませんでした。"
@@ -2962,7 +2962,7 @@ msgstr "関連付けに失敗しました。"
msgid "Failed to cancel inventory source sync."
msgstr "インベントリーソースの同期をキャンセルできませんでした。"
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr "1 つ以上のジョブを取り消すことができませんでした。"
@@ -3024,15 +3024,15 @@ msgstr "通知を削除できませんでした。"
msgid "Failed to delete one or more applications."
msgstr "1 つ以上のアプリケーションを削除できませんでした。"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr "1 つ以上の認証情報タイプを削除できませんでした。"
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr "1 つ以上の認証情報を削除できませんでした。"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3045,15 +3045,15 @@ msgstr "1 つ以上のグループを削除できませんでした。"
msgid "Failed to delete one or more hosts."
msgstr "1 つ以上のホストを削除できませんでした。"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr "1 つ以上のインスタンスグループを削除できませんでした。"
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr "1 つ以上のインベントリーを削除できませんでした。"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr "1 つ以上のインベントリーリソースを削除できませんでした。"
@@ -3061,7 +3061,7 @@ msgstr "1 つ以上のインベントリーリソースを削除できません
msgid "Failed to delete one or more job templates."
msgstr "1 つ以上のジョブテンプレートを削除できませんでした"
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr "1 つ以上のジョブを削除できませんでした。"
@@ -3069,11 +3069,11 @@ msgstr "1 つ以上のジョブを削除できませんでした。"
msgid "Failed to delete one or more notification template."
msgstr "1 つ以上の通知テンプレートを削除できませんでした。"
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr "1 つ以上の組織を削除できませんでした。"
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr "1 つ以上のプロジェクトを削除できませんでした。"
@@ -3101,7 +3101,7 @@ msgstr "1 つ以上のユーザートークンを削除できませんでした
msgid "Failed to delete one or more users."
msgstr "1 人以上のユーザーを削除できませんでした。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を削除できませんでした。"
@@ -3151,7 +3151,7 @@ msgstr "ワークフロージョブテンプレートを削除できませんで
msgid "Failed to delete {name}."
msgstr "{name} を削除できませんでした。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr "1 つ以上のワークフロー承認を拒否できませんでした。"
@@ -3211,7 +3211,7 @@ msgstr "インベントリーソースを同期できませんでした。"
msgid "Failed to sync project."
msgstr "プロジェクトを同期できませんでした。"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr "一部またはすべてのインベントリーソースを同期できませんでした。"
@@ -3415,7 +3415,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr "Git"
@@ -3722,7 +3722,7 @@ msgstr "時間"
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -3937,7 +3937,7 @@ msgstr "インスタンスグループ"
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -3997,8 +3997,8 @@ msgstr "無効なユーザー名またはパスワードです。やり直して
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4061,8 +4061,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "インベントリーソース同期"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4145,7 +4145,7 @@ msgstr "JSON:"
msgid "January"
msgstr "1 月"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr "ジョブ"
@@ -4219,7 +4219,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4245,8 +4245,8 @@ msgstr "ジョブステータスのグラフタブ"
msgid "Job templates"
msgstr "ジョブテンプレート"
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4352,7 +4352,7 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr "ラベル名"
@@ -4480,7 +4480,7 @@ msgstr "ワークフローの起動"
msgid "Launched By"
msgstr "起動者"
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr "起動者 (ユーザー名)"
@@ -4516,7 +4516,7 @@ msgstr "ライセンス設定"
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4676,7 +4676,7 @@ msgstr "最大長"
msgid "May"
msgstr "5 月"
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr "メンバー"
@@ -4764,14 +4764,14 @@ msgstr "修正済み"
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4780,12 +4780,12 @@ msgstr "修正済み"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -4920,15 +4920,15 @@ msgstr "複数の選択オプション"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -4963,9 +4963,9 @@ msgstr "複数の選択オプション"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -4989,8 +4989,8 @@ msgstr "複数の選択オプション"
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -4998,8 +4998,8 @@ msgstr "複数の選択オプション"
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5023,8 +5023,8 @@ msgstr "複数の選択オプション"
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr "名前"
@@ -5048,7 +5048,7 @@ msgstr "未更新"
msgid "Never expires"
msgstr "期限切れなし"
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr "新規"
@@ -5409,7 +5409,7 @@ msgstr "オプション"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5560,7 +5560,7 @@ msgstr "過去 2 週間"
msgid "Past week"
msgstr "過去 1 週間"
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr "保留中"
@@ -5625,7 +5625,7 @@ msgstr "Playbook 実行"
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5783,8 +5783,8 @@ msgstr "プロジェクトの同期の失敗"
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -5922,7 +5922,7 @@ msgstr "受信者リスト"
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr "Red Hat Insights"
@@ -6020,7 +6020,7 @@ msgstr "ホストパラメーターを使用した再起動"
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr "リモートアーカイブ"
@@ -6250,7 +6250,7 @@ msgstr "実行中"
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr "実行中のジョブ"
@@ -6547,7 +6547,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "承認する行の選択"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "削除する行の選択"
@@ -7190,11 +7190,11 @@ msgstr "開始"
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr "ステータス"
@@ -7257,7 +7257,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr "Subversion"
@@ -7278,7 +7278,7 @@ msgstr "成功メッセージ"
msgid "Success message body"
msgstr "成功メッセージボディー"
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7334,16 +7334,16 @@ msgstr "同期"
msgid "Sync Project"
msgstr "プロジェクトの同期"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr "すべてを同期"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr "すべてのソースの同期"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr "同期エラー"
@@ -7465,7 +7465,7 @@ msgstr "チームが見つかりません。"
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7490,8 +7490,8 @@ msgstr "更新が見つかりません。"
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7615,7 +7615,7 @@ msgstr "推奨される変数名の形式は小文字のみを使用し、それ
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr "Tower インスタンスグループは削除できません。"
@@ -7671,7 +7671,7 @@ msgstr "これらの引数は、指定されたモジュールで使用されま
msgid "Third"
msgstr "第 3"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "このアクションにより、以下が削除されます。"
@@ -8002,7 +8002,7 @@ msgstr "ツール"
msgid "Top Pagination"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr "ジョブの合計"
@@ -8069,7 +8069,7 @@ msgstr "Twilio"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8078,15 +8078,15 @@ msgstr "Twilio"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8626,7 +8626,7 @@ msgstr "ビジュアライザー"
msgid "WARNING:"
msgstr "警告:"
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr "待機中"
@@ -8804,7 +8804,7 @@ msgstr ""
msgid "Workflow Link"
msgstr "ワークフローのリンク"
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr "ワークフローテンプレート"
@@ -8898,11 +8898,11 @@ msgstr "同じ Vault ID を持つ複数の Vault 認証情報を選択するこ
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "次のグループを削除する権限がありません: {itemsUnableToDelete}"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}"
@@ -8966,7 +8966,7 @@ msgstr "承認"
msgid "brand logo"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "削除のキャンセル"
@@ -8975,7 +8975,7 @@ msgstr "削除のキャンセル"
msgid "command"
msgstr "コマンド"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "削除の確認"
@@ -9209,11 +9209,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -196,9 +196,9 @@ msgstr ""
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -212,9 +212,9 @@ msgstr ""
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -294,7 +294,7 @@ msgstr ""
msgid "Add a new node between these two nodes"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr ""
@@ -306,15 +306,15 @@ msgstr ""
msgid "Add existing host"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr ""
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr ""
@@ -330,7 +330,7 @@ msgstr ""
msgid "Add resource type"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr ""
@@ -342,7 +342,7 @@ msgstr ""
msgid "Add user permissions"
msgstr ""
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr ""
@@ -844,7 +844,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -939,7 +939,7 @@ msgstr ""
msgid "Cancel sync source"
msgstr ""
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1472,7 +1472,7 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1512,14 +1512,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1528,12 +1528,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1873,7 +1873,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr ""
@@ -1915,7 +1915,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1926,15 +1926,15 @@ msgid "Deleted"
msgstr ""
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr ""
@@ -1986,7 +1986,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -2000,7 +2000,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -2018,7 +2018,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr ""
@@ -2747,12 +2747,12 @@ msgstr ""
#~ msgid "Environment"
#~ msgstr ""
#: components/JobList/JobList.jsx:207
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
@@ -2786,7 +2786,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2800,7 +2800,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2814,11 +2814,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2832,7 +2832,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2854,8 +2854,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr ""
@@ -3036,7 +3036,7 @@ msgstr ""
msgid "Facts"
msgstr ""
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -3057,7 +3057,7 @@ msgstr ""
msgid "Failed hosts"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr ""
@@ -3086,7 +3086,7 @@ msgstr ""
msgid "Failed to cancel inventory source sync."
msgstr ""
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr ""
@@ -3148,15 +3148,15 @@ msgstr ""
msgid "Failed to delete one or more applications."
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr ""
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3169,15 +3169,15 @@ msgstr ""
msgid "Failed to delete one or more hosts."
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3185,7 +3185,7 @@ msgstr ""
msgid "Failed to delete one or more job templates."
msgstr ""
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr ""
@@ -3193,11 +3193,11 @@ msgstr ""
msgid "Failed to delete one or more notification template."
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr ""
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr ""
@@ -3225,7 +3225,7 @@ msgstr ""
msgid "Failed to delete one or more users."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr ""
@@ -3275,7 +3275,7 @@ msgstr ""
msgid "Failed to delete {name}."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr ""
@@ -3335,7 +3335,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3539,7 +3539,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr ""
@@ -3828,7 +3828,7 @@ msgstr ""
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -4096,7 +4096,7 @@ msgstr ""
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -4156,8 +4156,8 @@ msgstr ""
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4220,8 +4220,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4304,7 +4304,7 @@ msgstr ""
msgid "January"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr ""
@@ -4378,7 +4378,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4404,8 +4404,8 @@ msgstr ""
msgid "Job templates"
msgstr ""
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4511,7 +4511,7 @@ msgstr ""
msgid "LDAP5"
msgstr ""
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr ""
@@ -4639,7 +4639,7 @@ msgstr ""
msgid "Launched By"
msgstr ""
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr ""
@@ -4675,7 +4675,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4835,7 +4835,7 @@ msgstr ""
msgid "May"
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr ""
@@ -4929,14 +4929,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4945,12 +4945,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -5085,15 +5085,15 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -5128,9 +5128,9 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -5154,8 +5154,8 @@ msgstr ""
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -5163,8 +5163,8 @@ msgstr ""
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5188,8 +5188,8 @@ msgstr ""
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr ""
@@ -5213,7 +5213,7 @@ msgstr ""
msgid "Never expires"
msgstr ""
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr ""
@@ -5592,7 +5592,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5743,7 +5743,7 @@ msgstr ""
msgid "Past week"
msgstr ""
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr ""
@@ -5808,7 +5808,7 @@ msgstr ""
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5970,8 +5970,8 @@ msgstr ""
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -6121,7 +6121,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr ""
@@ -6229,7 +6229,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr ""
@@ -6461,7 +6461,7 @@ msgstr ""
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr ""
@@ -6760,7 +6760,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -7450,11 +7450,11 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr ""
@@ -7517,7 +7517,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr ""
@@ -7538,7 +7538,7 @@ msgstr ""
msgid "Success message body"
msgstr ""
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7594,16 +7594,16 @@ msgstr ""
msgid "Sync Project"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr ""
@@ -7725,7 +7725,7 @@ msgstr ""
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7750,8 +7750,8 @@ msgstr ""
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7915,7 +7915,7 @@ msgstr ""
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr ""
@@ -7954,8 +7954,8 @@ msgid "There was an error testing the log aggregator."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
msgstr ""
#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#~ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7977,7 +7977,7 @@ msgstr ""
msgid "Third"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -8386,7 +8386,7 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8395,15 +8395,15 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8954,7 +8954,7 @@ msgstr ""
msgid "WARNING:"
msgstr ""
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr ""
@@ -9140,7 +9140,7 @@ msgstr ""
msgid "Workflow Link"
msgstr ""
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr ""
@@ -9234,11 +9234,11 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr ""
@@ -9317,7 +9317,7 @@ msgstr ""
msgid "command"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9563,11 +9563,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -187,9 +187,9 @@ msgstr "操作"
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -203,9 +203,9 @@ msgstr "操作"
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -285,7 +285,7 @@ msgstr "添加新令牌"
msgid "Add a new node between these two nodes"
msgstr "在这两个节点间添加新节点"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr "添加容器组"
@@ -297,15 +297,15 @@ msgstr "添加现有组"
msgid "Add existing host"
msgstr "添加现有主机"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr "添加实例组"
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr "添加清单"
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr "添加作业模板"
@@ -321,7 +321,7 @@ msgstr "添加新主机"
msgid "Add resource type"
msgstr "添加资源类型"
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr "添加智能清单"
@@ -333,7 +333,7 @@ msgstr "添加团队权限"
msgid "Add user permissions"
msgstr "添加用户权限"
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr "添加工作流模板"
@@ -825,7 +825,7 @@ msgstr "缓存超时(秒)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -920,7 +920,7 @@ msgstr "取消同步进程"
msgid "Cancel sync source"
msgstr "取消同步源"
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1293,6 +1293,10 @@ msgstr "Copyright 2019 Red Hat, Inc."
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
#: components/About/About.jsx:35
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
#: screens/Template/shared/JobTemplateForm.jsx:383
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
@@ -1425,7 +1429,7 @@ msgstr "创建用户令牌"
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1465,14 +1469,14 @@ msgstr "已创建"
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1481,12 +1485,12 @@ msgstr "已创建"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1818,7 +1822,7 @@ msgstr "创建应用"
msgid "Delete credential type"
msgstr "删除凭证类型"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr "删除错误"
@@ -1856,7 +1860,7 @@ msgstr "删除此链接"
msgid "Delete this node"
msgstr "删除此节点"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr "删除 {pluralizedItemName}"
@@ -1867,15 +1871,15 @@ msgid "Deleted"
msgstr "已删除"
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr "删除错误"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr "删除错误"
@@ -1927,7 +1931,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -1941,7 +1945,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -1959,7 +1963,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr "描述"
@@ -2676,7 +2680,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2690,7 +2694,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2704,11 +2708,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2722,7 +2726,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2744,8 +2748,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr "错误!"
@@ -2922,7 +2926,7 @@ msgstr "完成:"
msgid "Facts"
msgstr "事实"
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -2943,7 +2947,7 @@ msgstr "失败的主机"
msgid "Failed hosts"
msgstr "失败的主机"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr "批准一个或多个工作流批准失败。"
@@ -2972,7 +2976,7 @@ msgstr "关联失败。"
msgid "Failed to cancel inventory source sync."
msgstr "取消清单源同步失败。"
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr "取消一个或多个作业失败。"
@@ -3034,15 +3038,15 @@ msgstr "删除通知失败。"
msgid "Failed to delete one or more applications."
msgstr "删除一个或多个应用程序失败。"
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr "删除一个或多个凭证类型失败。"
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr "删除一个或多个凭证失败。"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3055,15 +3059,15 @@ msgstr "删除一个或多个组失败。"
msgid "Failed to delete one or more hosts."
msgstr "删除一个或多个主机失败。"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr "删除一个或多个实例组失败。"
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr "删除一个或多个清单失败。"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr "删除一个或多个清单源失败。"
@@ -3071,7 +3075,7 @@ msgstr "删除一个或多个清单源失败。"
msgid "Failed to delete one or more job templates."
msgstr "删除一个或多个作业模板失败。"
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr "删除一个或多个作业失败。"
@@ -3079,11 +3083,11 @@ msgstr "删除一个或多个作业失败。"
msgid "Failed to delete one or more notification template."
msgstr "删除一个或多个通知模板失败。"
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr "删除一个或多个机构失败。"
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr "删除一个或多个项目失败。"
@@ -3111,7 +3115,7 @@ msgstr "删除一个或多个用户令牌失败。"
msgid "Failed to delete one or more users."
msgstr "删除一个或多个用户失败。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr "无法删除一个或多个工作流批准。"
@@ -3161,7 +3165,7 @@ msgstr "删除工作流任务模板失败。"
msgid "Failed to delete {name}."
msgstr "删除 {name} 失败。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr "拒绝一个或多个工作流批准失败。"
@@ -3221,7 +3225,7 @@ msgstr "同步清单源失败。"
msgid "Failed to sync project."
msgstr "同步项目失败。"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr "同步部分或所有清单源失败。"
@@ -3425,7 +3429,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr "Git"
@@ -3714,7 +3718,7 @@ msgstr "小时"
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -3944,7 +3948,7 @@ msgstr "实例组"
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -4004,8 +4008,8 @@ msgstr "无效的用户名或密码。请重试。"
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4068,8 +4072,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "清单源同步"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4152,7 +4156,7 @@ msgstr "JSON"
msgid "January"
msgstr "1 月"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr "作业"
@@ -4226,7 +4230,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4252,8 +4256,8 @@ msgstr "作业状态图标签页"
msgid "Job templates"
msgstr "作业模板"
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4359,7 +4363,7 @@ msgstr "LDAP4"
msgid "LDAP5"
msgstr "LDAP5"
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr "标签名称"
@@ -4487,7 +4491,7 @@ msgstr "启动工作流"
msgid "Launched By"
msgstr "启动者"
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr "启动者(用户名)"
@@ -4525,7 +4529,7 @@ msgstr "许可证设置"
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4685,7 +4689,7 @@ msgstr "最大长度"
msgid "May"
msgstr "5 月"
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr "成员"
@@ -4773,14 +4777,14 @@ msgstr "修改"
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4789,12 +4793,12 @@ msgstr "修改"
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -4929,15 +4933,15 @@ msgstr "多项选择选项"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -4972,9 +4976,9 @@ msgstr "多项选择选项"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -4998,8 +5002,8 @@ msgstr "多项选择选项"
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -5007,8 +5011,8 @@ msgstr "多项选择选项"
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -5032,8 +5036,8 @@ msgstr "多项选择选项"
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr "名称"
@@ -5057,7 +5061,7 @@ msgstr "永不更新"
msgid "Never expires"
msgstr "永不过期"
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr "新"
@@ -5418,7 +5422,7 @@ msgstr "选项"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5569,7 +5573,7 @@ msgstr "过去两周"
msgid "Past week"
msgstr "过去一周"
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr "待处理"
@@ -5634,7 +5638,7 @@ msgstr "Playbook 运行"
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5792,8 +5796,8 @@ msgstr "项目同步失败"
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -5931,7 +5935,7 @@ msgstr "接收者列表"
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr "Red Hat Insights"
@@ -6029,7 +6033,7 @@ msgstr "使用主机参数重新启动"
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr "远程归档"
@@ -6259,7 +6263,7 @@ msgstr "运行中"
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr "运行作业"
@@ -6556,7 +6560,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "选择要批准的行"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "选择要删除的行"
@@ -7199,11 +7203,11 @@ msgstr "已开始"
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr "状态"
@@ -7266,7 +7270,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr "Subversion"
@@ -7287,7 +7291,7 @@ msgstr "成功信息"
msgid "Success message body"
msgstr "成功消息正文"
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7343,16 +7347,16 @@ msgstr "同步"
msgid "Sync Project"
msgstr "同步项目"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr "全部同步"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr "同步所有源"
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr "同步错误"
@@ -7474,7 +7478,7 @@ msgstr "未找到团队"
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7499,8 +7503,8 @@ msgstr "未找到模板"
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7624,7 +7628,7 @@ msgstr "变量名称的建议格式为小写字母并用下划线分隔(例如
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
#~ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr "tower 实例组不能被删除。"
@@ -7680,7 +7684,7 @@ msgstr "这些参数与指定的模块一起使用。点击可以找到有关 {0
msgid "Third"
msgstr "第三"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "此操作将删除以下内容:"
@@ -8011,7 +8015,7 @@ msgstr "工具"
msgid "Top Pagination"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr "作业总数"
@@ -8078,7 +8082,7 @@ msgstr "Twilio"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8087,15 +8091,15 @@ msgstr "Twilio"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8635,7 +8639,7 @@ msgstr "Visualizer"
msgid "WARNING:"
msgstr "警告:"
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr "等待"
@@ -8813,7 +8817,7 @@ msgstr ""
msgid "Workflow Link"
msgstr "工作流链接"
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr "工作流模板"
@@ -8907,11 +8911,11 @@ msgstr "您不能选择具有相同 vault ID 的多个 vault 凭证。这样做
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "您没有权限删除以下组: {itemsUnableToDelete}"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "您没有权限删除 {pluralizedItemName}{itemsUnableToDelete}"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr "您没有权限删除 {pluralizedItemName}{itemsUnableToDelete}"
@@ -8975,7 +8979,7 @@ msgstr "批准"
msgid "brand logo"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "取消删除"
@@ -8984,7 +8988,7 @@ msgstr "取消删除"
msgid "command"
msgstr "命令"
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "确认删除"
@@ -9218,11 +9222,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -192,9 +192,9 @@ msgstr ""
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47
#: screens/Application/ApplicationsList/ApplicationsList.jsx:166
#: screens/Credential/CredentialList/CredentialList.jsx:145
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
@@ -208,9 +208,9 @@ msgstr ""
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119
#: screens/Organization/OrganizationList/OrganizationList.jsx:161
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:178
#: screens/Project/ProjectList/ProjectList.jsx:177
#: screens/Project/ProjectList/ProjectListItem.jsx:152
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
@@ -290,7 +290,7 @@ msgstr ""
msgid "Add a new node between these two nodes"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155
msgid "Add container group"
msgstr ""
@@ -302,15 +302,15 @@ msgstr ""
msgid "Add existing host"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156
msgid "Add instance group"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:135
#: screens/Inventory/InventoryList/InventoryList.jsx:134
msgid "Add inventory"
msgstr ""
#: components/TemplateList/TemplateList.jsx:141
#: components/TemplateList/TemplateList.jsx:140
msgid "Add job template"
msgstr ""
@@ -326,7 +326,7 @@ msgstr ""
msgid "Add resource type"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:136
#: screens/Inventory/InventoryList/InventoryList.jsx:135
msgid "Add smart inventory"
msgstr ""
@@ -338,7 +338,7 @@ msgstr ""
msgid "Add user permissions"
msgstr ""
#: components/TemplateList/TemplateList.jsx:142
#: components/TemplateList/TemplateList.jsx:141
msgid "Add workflow template"
msgstr ""
@@ -797,7 +797,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -892,7 +892,7 @@ msgstr ""
msgid "Cancel sync source"
msgstr ""
#: components/JobList/JobList.jsx:208
#: components/JobList/JobList.jsx:207
#: components/Workflow/WorkflowNodeHelp.jsx:95
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25
@@ -1388,7 +1388,7 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115
#: screens/Host/HostDetail/HostDetail.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66
@@ -1428,14 +1428,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:129
#: components/NotificationList/NotificationList.jsx:206
#: components/Schedule/ScheduleList/ScheduleList.jsx:201
#: components/TemplateList/TemplateList.jsx:210
#: components/TemplateList/TemplateList.jsx:209
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196
#: screens/Credential/CredentialList/CredentialList.jsx:133
#: screens/Credential/CredentialList/CredentialList.jsx:132
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101
@@ -1444,12 +1444,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162
#: screens/Inventory/InventoryList/InventoryList.jsx:182
#: screens/Inventory/InventoryList/InventoryList.jsx:181
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93
#: screens/Organization/OrganizationList/OrganizationList.jsx:146
#: screens/Organization/OrganizationList/OrganizationList.jsx:145
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125
#: screens/Project/ProjectList/ProjectList.jsx:166
#: screens/Project/ProjectList/ProjectList.jsx:165
#: screens/Team/TeamList/TeamList.jsx:142
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105
@@ -1777,7 +1777,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:244
#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
msgid "Delete error"
msgstr ""
@@ -1815,7 +1815,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1826,15 +1826,15 @@ msgid "Deleted"
msgstr ""
#: components/TemplateList/TemplateList.jsx:269
#: screens/Credential/CredentialList/CredentialList.jsx:189
#: screens/Inventory/InventoryList/InventoryList.jsx:254
#: screens/Project/ProjectList/ProjectList.jsx:233
#: screens/Credential/CredentialList/CredentialList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:261
#: screens/Project/ProjectList/ProjectList.jsx:235
msgid "Deletion Error"
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:219
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:260
msgid "Deletion error"
msgstr ""
@@ -1886,7 +1886,7 @@ msgstr ""
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:178
#: screens/Inventory/InventoryList/InventoryList.jsx:177
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
@@ -1900,7 +1900,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95
#: screens/Organization/OrganizationList/OrganizationList.jsx:142
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
#: screens/Project/ProjectList/ProjectList.jsx:143
@@ -1918,7 +1918,7 @@ msgstr ""
#: screens/User/UserTokenList/UserTokenList.jsx:116
#: screens/User/shared/UserTokenForm.jsx:59
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179
msgid "Description"
msgstr ""
@@ -2598,12 +2598,12 @@ msgstr ""
msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
msgstr ""
#: components/JobList/JobList.jsx:207
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
@@ -2637,7 +2637,7 @@ msgstr ""
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2651,7 +2651,7 @@ msgstr ""
#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170
#: screens/Application/ApplicationsList/ApplicationsList.jsx:191
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295
#: screens/Credential/CredentialList/CredentialList.jsx:192
#: screens/Credential/CredentialList/CredentialList.jsx:194
#: screens/Host/HostDetail/HostDetail.jsx:60
#: screens/Host/HostDetail/HostDetail.jsx:132
#: screens/Host/HostGroups/HostGroupsList.jsx:243
@@ -2665,11 +2665,11 @@ msgstr ""
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:255
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
#: screens/Inventory/InventorySources/InventorySourceList.jsx:234
#: screens/Inventory/InventorySources/InventorySourceList.jsx:247
#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2683,7 +2683,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:208
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:234
#: screens/Project/ProjectList/ProjectList.jsx:236
#: screens/Project/shared/ProjectSyncButton.jsx:41
#: screens/Team/TeamDetail/TeamDetail.jsx:81
#: screens/Team/TeamList/TeamList.jsx:205
@@ -2705,8 +2705,8 @@ msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264
msgid "Error!"
msgstr ""
@@ -2887,7 +2887,7 @@ msgstr ""
msgid "Facts"
msgstr ""
#: components/JobList/JobList.jsx:206
#: components/JobList/JobList.jsx:205
#: components/Workflow/WorkflowNodeHelp.jsx:89
#: screens/Dashboard/shared/ChartTooltip.jsx:66
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47
@@ -2908,7 +2908,7 @@ msgstr ""
msgid "Failed hosts"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268
msgid "Failed to approve one or more workflow approval."
msgstr ""
@@ -2937,7 +2937,7 @@ msgstr ""
msgid "Failed to cancel inventory source sync."
msgstr ""
#: components/JobList/JobList.jsx:292
#: components/JobList/JobList.jsx:290
msgid "Failed to cancel one or more jobs."
msgstr ""
@@ -2999,15 +2999,15 @@ msgstr ""
msgid "Failed to delete one or more applications."
msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213
msgid "Failed to delete one or more credential types."
msgstr ""
#: screens/Credential/CredentialList/CredentialList.jsx:195
#: screens/Credential/CredentialList/CredentialList.jsx:197
msgid "Failed to delete one or more credentials."
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225
msgid "Failed to delete one or more execution environments"
msgstr ""
@@ -3020,15 +3020,15 @@ msgstr ""
msgid "Failed to delete one or more hosts."
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266
msgid "Failed to delete one or more instance groups."
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:258
#: screens/Inventory/InventoryList/InventoryList.jsx:265
msgid "Failed to delete one or more inventories."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:250
#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3036,7 +3036,7 @@ msgstr ""
msgid "Failed to delete one or more job templates."
msgstr ""
#: components/JobList/JobList.jsx:281
#: components/JobList/JobList.jsx:279
msgid "Failed to delete one or more jobs."
msgstr ""
@@ -3044,11 +3044,11 @@ msgstr ""
msgid "Failed to delete one or more notification template."
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:211
#: screens/Organization/OrganizationList/OrganizationList.jsx:213
msgid "Failed to delete one or more organizations."
msgstr ""
#: screens/Project/ProjectList/ProjectList.jsx:237
#: screens/Project/ProjectList/ProjectList.jsx:239
msgid "Failed to delete one or more projects."
msgstr ""
@@ -3076,7 +3076,7 @@ msgstr ""
msgid "Failed to delete one or more users."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256
msgid "Failed to delete one or more workflow approval."
msgstr ""
@@ -3126,7 +3126,7 @@ msgstr ""
msgid "Failed to delete {name}."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269
msgid "Failed to deny one or more workflow approval."
msgstr ""
@@ -3186,7 +3186,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:237
#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3385,7 +3385,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:114
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:150
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90
msgid "Git"
msgstr ""
@@ -3674,7 +3674,7 @@ msgstr ""
msgid "I agree to the End User License Agreement"
msgstr ""
#: components/JobList/JobList.jsx:174
#: components/JobList/JobList.jsx:173
#: components/Lookup/HostFilterLookup.jsx:82
#: screens/Team/TeamRoles/TeamRolesList.jsx:155
#: screens/User/UserRoles/UserRolesList.jsx:152
@@ -3912,7 +3912,7 @@ msgstr ""
#: routeConfig.js:133
#: screens/ActivityStream/ActivityStream.jsx:199
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219
#: screens/InstanceGroup/InstanceGroups.jsx:16
#: screens/InstanceGroup/InstanceGroups.jsx:29
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91
@@ -3972,8 +3972,8 @@ msgstr ""
#: screens/ActivityStream/ActivityStream.jsx:171
#: screens/Dashboard/Dashboard.jsx:140
#: screens/Inventory/Inventories.jsx:16
#: screens/Inventory/InventoryList/InventoryList.jsx:169
#: screens/Inventory/InventoryList/InventoryList.jsx:220
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
#: util/getRelatedResourceDeleteDetails.js:226
#: util/getRelatedResourceDeleteDetails.js:294
@@ -4036,8 +4036,8 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:163
#: screens/Inventory/InventorySources/InventorySourceList.jsx:182
#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
#: util/getRelatedResourceDeleteDetails.js:74
#: util/getRelatedResourceDeleteDetails.js:171
msgid "Inventory Sources"
@@ -4120,7 +4120,7 @@ msgstr ""
msgid "January"
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69
msgid "Job"
msgstr ""
@@ -4194,7 +4194,7 @@ msgstr ""
msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes"
msgstr ""
#: components/JobList/JobList.jsx:182
#: components/JobList/JobList.jsx:181
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112
#: components/PromptDetail/PromptDetail.jsx:156
#: components/PromptDetail/PromptJobTemplateDetail.jsx:90
@@ -4220,8 +4220,8 @@ msgstr ""
msgid "Job templates"
msgstr ""
#: components/JobList/JobList.jsx:165
#: components/JobList/JobList.jsx:242
#: components/JobList/JobList.jsx:164
#: components/JobList/JobList.jsx:239
#: routeConfig.js:40
#: screens/ActivityStream/ActivityStream.jsx:148
#: screens/Dashboard/shared/LineChart.jsx:69
@@ -4327,7 +4327,7 @@ msgstr ""
msgid "LDAP5"
msgstr ""
#: components/JobList/JobList.jsx:178
#: components/JobList/JobList.jsx:177
msgid "Label Name"
msgstr ""
@@ -4455,7 +4455,7 @@ msgstr ""
msgid "Launched By"
msgstr ""
#: components/JobList/JobList.jsx:194
#: components/JobList/JobList.jsx:193
msgid "Launched By (Username)"
msgstr ""
@@ -4491,7 +4491,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
#: components/JobList/JobList.jsx:212
#: components/JobList/JobList.jsx:211
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35
#: components/PromptDetail/PromptDetail.jsx:194
#: components/PromptDetail/PromptJobTemplateDetail.jsx:140
@@ -4651,7 +4651,7 @@ msgstr ""
msgid "May"
msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65
msgid "Members"
msgstr ""
@@ -4737,14 +4737,14 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:125
#: components/NotificationList/NotificationList.jsx:210
#: components/Schedule/ScheduleList/ScheduleList.jsx:205
#: components/TemplateList/TemplateList.jsx:214
#: components/TemplateList/TemplateList.jsx:213
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200
#: screens/Credential/CredentialList/CredentialList.jsx:137
#: screens/Credential/CredentialList/CredentialList.jsx:136
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105
@@ -4753,12 +4753,12 @@ msgstr ""
#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166
#: screens/Inventory/InventoryList/InventoryList.jsx:186
#: screens/Inventory/InventoryList/InventoryList.jsx:185
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97
#: screens/Organization/OrganizationList/OrganizationList.jsx:150
#: screens/Organization/OrganizationList/OrganizationList.jsx:149
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129
#: screens/Project/ProjectList/ProjectList.jsx:162
#: screens/Project/ProjectList/ProjectList.jsx:161
#: screens/Team/TeamList/TeamList.jsx:146
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101
@@ -4893,15 +4893,15 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:161
#: screens/Application/shared/ApplicationForm.jsx:54
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205
#: screens/Credential/CredentialList/CredentialList.jsx:124
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialList.jsx:123
#: screens/Credential/CredentialList/CredentialList.jsx:142
#: screens/Credential/CredentialList/CredentialListItem.jsx:55
#: screens/Credential/shared/CredentialForm.jsx:172
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85
#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
@@ -4936,9 +4936,9 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116
#: screens/Inventory/InventoryList/InventoryList.jsx:173
#: screens/Inventory/InventoryList/InventoryList.jsx:192
#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryList.jsx:172
#: screens/Inventory/InventoryList/InventoryList.jsx:191
#: screens/Inventory/InventoryList/InventoryList.jsx:199
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
@@ -4962,8 +4962,8 @@ msgstr ""
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103
#: screens/Organization/OrganizationList/OrganizationList.jsx:137
#: screens/Organization/OrganizationList/OrganizationList.jsx:158
#: screens/Organization/OrganizationList/OrganizationList.jsx:136
#: screens/Organization/OrganizationList/OrganizationList.jsx:157
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81
@@ -4971,8 +4971,8 @@ msgstr ""
#: screens/Project/ProjectDetail/ProjectDetail.jsx:91
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:138
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
#: screens/Project/ProjectList/ProjectListItem.jsx:99
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
@@ -4996,8 +4996,8 @@ msgstr ""
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62
msgid "Name"
msgstr ""
@@ -5021,7 +5021,7 @@ msgstr ""
msgid "Never expires"
msgstr ""
#: components/JobList/JobList.jsx:201
#: components/JobList/JobList.jsx:200
#: components/Workflow/WorkflowNodeHelp.jsx:74
msgid "New"
msgstr ""
@@ -5375,7 +5375,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
@@ -5526,7 +5526,7 @@ msgstr ""
msgid "Past week"
msgstr ""
#: components/JobList/JobList.jsx:202
#: components/JobList/JobList.jsx:201
#: components/Workflow/WorkflowNodeHelp.jsx:77
msgid "Pending"
msgstr ""
@@ -5591,7 +5591,7 @@ msgstr ""
msgid "Playbook Started"
msgstr ""
#: components/TemplateList/TemplateList.jsx:206
#: components/TemplateList/TemplateList.jsx:205
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88
@@ -5749,8 +5749,8 @@ msgstr ""
#: routeConfig.js:76
#: screens/ActivityStream/ActivityStream.jsx:168
#: screens/Dashboard/Dashboard.jsx:151
#: screens/Project/ProjectList/ProjectList.jsx:133
#: screens/Project/ProjectList/ProjectList.jsx:201
#: screens/Project/ProjectList/ProjectList.jsx:132
#: screens/Project/ProjectList/ProjectList.jsx:200
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
@@ -5890,7 +5890,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:117
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161
#: screens/Project/ProjectList/ProjectList.jsx:154
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93
msgid "Red Hat Insights"
msgstr ""
@@ -5994,7 +5994,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:116
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160
#: screens/Project/ProjectList/ProjectList.jsx:153
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92
msgid "Remote Archive"
msgstr ""
@@ -6222,7 +6222,7 @@ msgstr ""
msgid "Running Handlers"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
msgid "Running Jobs"
msgstr ""
@@ -6517,7 +6517,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -7169,11 +7169,11 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectList.jsx:174
#: screens/Project/ProjectList/ProjectListItem.jsx:119
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82
msgid "Status"
msgstr ""
@@ -7236,7 +7236,7 @@ msgstr ""
#: components/Lookup/ProjectLookup.jsx:115
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159
#: screens/Project/ProjectList/ProjectList.jsx:152
#: screens/Project/ProjectList/ProjectList.jsx:151
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91
msgid "Subversion"
msgstr ""
@@ -7257,7 +7257,7 @@ msgstr ""
msgid "Success message body"
msgstr ""
#: components/JobList/JobList.jsx:205
#: components/JobList/JobList.jsx:204
#: components/Workflow/WorkflowNodeHelp.jsx:86
#: screens/Dashboard/shared/ChartTooltip.jsx:59
msgid "Successful"
@@ -7313,16 +7313,16 @@ msgstr ""
msgid "Sync Project"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:199
#: screens/Inventory/InventorySources/InventorySourceList.jsx:202
#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
msgid "Sync all"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:193
#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
msgid "Sync all sources"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceList.jsx:231
#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
msgid "Sync error"
msgstr ""
@@ -7439,7 +7439,7 @@ msgstr ""
#: routeConfig.js:107
#: screens/ActivityStream/ActivityStream.jsx:185
#: screens/Organization/Organization.jsx:125
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationList.jsx:159
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68
#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62
#: screens/Organization/Organizations.jsx:33
@@ -7464,8 +7464,8 @@ msgstr ""
msgid "Template type"
msgstr ""
#: components/TemplateList/TemplateList.jsx:184
#: components/TemplateList/TemplateList.jsx:243
#: components/TemplateList/TemplateList.jsx:183
#: components/TemplateList/TemplateList.jsx:240
#: routeConfig.js:66
#: screens/ActivityStream/ActivityStream.jsx:162
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
@@ -7601,7 +7601,7 @@ msgid ""
"etc.). Variable names with spaces are not allowed."
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151
msgid "The tower instance group cannot be deleted."
msgstr ""
@@ -7636,8 +7636,8 @@ msgid "There was an error testing the log aggregator."
msgstr ""
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
msgstr ""
#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
#~ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7659,7 +7659,7 @@ msgstr ""
msgid "Third"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -8056,7 +8056,7 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
#: components/Workflow/WorkflowNodeHelp.jsx:136
#: components/Workflow/WorkflowNodeHelp.jsx:162
#: screens/Credential/CredentialList/CredentialList.jsx:144
#: screens/Credential/CredentialList/CredentialList.jsx:143
#: screens/Credential/CredentialList/CredentialListItem.jsx:60
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
@@ -8065,15 +8065,15 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryList.jsx:201
#: screens/Inventory/InventoryList/InventoryListItem.jsx:95
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115
#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:176
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
#: screens/Project/ProjectList/ProjectListItem.jsx:132
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
@@ -8618,7 +8618,7 @@ msgstr ""
msgid "WARNING:"
msgstr ""
#: components/JobList/JobList.jsx:203
#: components/JobList/JobList.jsx:202
#: components/Workflow/WorkflowNodeHelp.jsx:80
msgid "Waiting"
msgstr ""
@@ -8794,7 +8794,7 @@ msgstr ""
msgid "Workflow Link"
msgstr ""
#: components/TemplateList/TemplateList.jsx:202
#: components/TemplateList/TemplateList.jsx:201
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97
msgid "Workflow Template"
msgstr ""
@@ -8888,11 +8888,11 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}."
msgstr ""
@@ -8971,7 +8971,7 @@ msgstr ""
msgid "command"
msgstr ""
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264
#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9209,11 +9209,11 @@ msgstr ""
msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}"
msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:222
#: screens/Inventory/InventoryList/InventoryList.jsx:229
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.jsx:247
#: components/JobList/JobList.jsx:245
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 ""

View File

@@ -1,7 +1,6 @@
import React, { useEffect, useCallback } from 'react';
import { useLocation } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { CredentialsAPI } from '../../../api';
import useSelected from '../../../util/useSelected';
@@ -27,7 +26,7 @@ const QS_CONFIG = getQSConfig('credential', {
order_by: 'name',
});
function CredentialList({ i18n }) {
function CredentialList() {
const location = useLocation();
const {
result: {
@@ -121,28 +120,28 @@ function CredentialList({ i18n }) {
toolbarRelatedSearchableKeys={relatedSearchableKeys}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
]}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Type`)}</HeaderCell>
<HeaderCell alignRight>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Type`}</HeaderCell>
<HeaderCell alignRight>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderRow={(item, index) => (
@@ -173,12 +172,15 @@ function CredentialList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Credentials`)}
pluralizedItemName={t`Credentials`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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?"
/>
}
/>,
]}
/>
@@ -186,17 +188,17 @@ function CredentialList({ i18n }) {
/>
</Card>
<AlertModal
aria-label={i18n._(t`Deletion Error`)}
aria-label={t`Deletion Error`}
isOpen={deletionError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more credentials.`)}
{t`Failed to delete one or more credentials.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</PageSection>
);
}
export default withI18n()(CredentialList);
export default CredentialList;

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useCallback } from 'react';
import { useLocation, useRouteMatch } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { CredentialTypesAPI } from '../../../api';
@@ -28,7 +28,7 @@ const QS_CONFIG = getQSConfig('credential-type', {
managed_by_tower: false,
});
function CredentialTypeList({ i18n }) {
function CredentialTypeList() {
const location = useLocation();
const match = useRouteMatch();
@@ -119,25 +119,25 @@ function CredentialTypeList({ i18n }) {
hasContentLoading={isLoading || deleteLoading}
items={credentialTypes}
itemCount={credentialTypesCount}
pluralizedItemName={i18n._(t`Credential Types`)}
pluralizedItemName={t`Credential Types`}
qsConfig={QS_CONFIG}
onRowClick={handleSelect}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
]}
@@ -165,20 +165,23 @@ function CredentialTypeList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Credential Types`)}
pluralizedItemName={t`Credential Types`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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?"
/>
}
/>,
]}
/>
)}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderRow={(credentialType, index) => (
@@ -201,17 +204,17 @@ function CredentialTypeList({ i18n }) {
</Card>
</PageSection>
<AlertModal
aria-label={i18n._(t`Deletion error`)}
aria-label={t`Deletion error`}
isOpen={deletionError}
onClose={clearDeletionError}
title={i18n._(t`Error`)}
title={t`Error`}
variant="error"
>
{i18n._(t`Failed to delete one or more credential types.`)}
{t`Failed to delete one or more credential types.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</>
);
}
export default withI18n()(CredentialTypeList);
export default CredentialTypeList;

View File

@@ -1,7 +1,6 @@
import React, { useEffect, useCallback } from 'react';
import { useLocation, useRouteMatch } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { ExecutionEnvironmentsAPI } from '../../../api';
@@ -28,7 +27,7 @@ const QS_CONFIG = getQSConfig('execution_environments', {
order_by: 'name',
});
function ExecutionEnvironmentList({ i18n }) {
function ExecutionEnvironmentList() {
const location = useLocation();
const match = useRouteMatch();
@@ -118,46 +117,46 @@ function ExecutionEnvironmentList({ i18n }) {
hasContentLoading={isLoading || deleteLoading}
items={executionEnvironments}
itemCount={executionEnvironmentsCount}
pluralizedItemName={i18n._(t`Execution Environments`)}
pluralizedItemName={t`Execution Environments`}
qsConfig={QS_CONFIG}
onRowClick={handleSelect}
toolbarSearchableKeys={searchableKeys}
toolbarRelatedSearchableKeys={relatedSearchableKeys}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Image`),
name: t`Image`,
key: 'image__icontains',
},
]}
toolbarSortColumns={[
{
name: i18n._(t`Image`),
name: t`Image`,
key: 'image',
},
{
name: i18n._(t`Created`),
name: t`Created`,
key: 'created',
},
{
name: i18n._(t`Organization`),
name: t`Organization`,
key: 'organization',
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description',
},
]}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Image`)}</HeaderCell>
<HeaderCell>{i18n._(t`Organization`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Image`}</HeaderCell>
<HeaderCell>{t`Organization`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderToolbar={props => (
@@ -182,12 +181,15 @@ function ExecutionEnvironmentList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Execution Environments`)}
pluralizedItemName={t`Execution Environments`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
one="This execution environment is currently being used by other resources. Are you sure you want to delete it?"
other="Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?"
/>
}
/>,
]}
/>
@@ -214,17 +216,17 @@ function ExecutionEnvironmentList({ i18n }) {
</Card>
</PageSection>
<AlertModal
aria-label={i18n._(t`Deletion error`)}
aria-label={t`Deletion error`}
isOpen={deletionError}
onClose={clearDeletionError}
title={i18n._(t`Error`)}
title={t`Error`}
variant="error"
>
{i18n._(t`Failed to delete one or more execution environments`)}
{t`Failed to delete one or more execution environments`}
<ErrorDetail error={deletionError} />
</AlertModal>
</>
);
}
export default withI18n()(ExecutionEnvironmentList);
export default ExecutionEnvironmentList;

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useCallback } from 'react';
import { useLocation, useRouteMatch, Link } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection, DropdownItem } from '@patternfly/react-core';
import { InstanceGroupsAPI } from '../../../api';
@@ -43,7 +43,7 @@ function modifyInstanceGroups(items = []) {
});
}
function InstanceGroupList({ i18n }) {
function InstanceGroupList() {
const location = useLocation();
const match = useRouteMatch();
@@ -127,7 +127,7 @@ function InstanceGroupList({ i18n }) {
return !item.summary_fields.user_capabilities.delete;
}
const pluralizedItemName = i18n._(t`Instance Groups`);
const pluralizedItemName = t`Instance Groups`;
let errorMessageDelete = '';
@@ -140,9 +140,7 @@ function InstanceGroupList({ i18n }) {
if (itemsUnableToDelete) {
if (modifiedSelected.some(cannotDelete)) {
errorMessageDelete = i18n._(
t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}. `
);
errorMessageDelete = t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}. `;
}
}
@@ -150,12 +148,12 @@ function InstanceGroupList({ i18n }) {
errorMessageDelete = errorMessageDelete.concat('\n');
}
errorMessageDelete = errorMessageDelete.concat(
i18n._(t`The tower instance group cannot be deleted.`)
t`The tower instance group cannot be deleted.`
);
}
const addContainerGroup = i18n._(t`Add container group`);
const addInstanceGroup = i18n._(t`Add instance group`);
const addContainerGroup = t`Add container group`;
const addInstanceGroup = t`Add instance group`;
const addButton = (
<AddDropDownButton
@@ -218,26 +216,29 @@ function InstanceGroupList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={modifiedSelected}
pluralizedItemName={i18n._(t`Instance Groups`)}
pluralizedItemName={t`Instance Groups`}
errorMessage={errorMessageDelete}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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?"
/>
}
/>,
]}
/>
)}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Type`)}</HeaderCell>
<HeaderCell>{i18n._(t`Running Jobs`)}</HeaderCell>
<HeaderCell>{i18n._(t`Total Jobs`)}</HeaderCell>
<HeaderCell>{i18n._(t`Instances`)}</HeaderCell>
<HeaderCell>{i18n._(t`Capacity`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Type`}</HeaderCell>
<HeaderCell>{t`Running Jobs`}</HeaderCell>
<HeaderCell>{t`Total Jobs`}</HeaderCell>
<HeaderCell>{t`Instances`}</HeaderCell>
<HeaderCell>{t`Capacity`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderRow={(instanceGroup, index) => (
@@ -256,17 +257,17 @@ function InstanceGroupList({ i18n }) {
</Card>
</PageSection>
<AlertModal
aria-label={i18n._(t`Deletion error`)}
aria-label={t`Deletion error`}
isOpen={deletionError}
onClose={clearDeletionError}
title={i18n._(t`Error`)}
title={t`Error`}
variant="error"
>
{i18n._(t`Failed to delete one or more instance groups.`)}
{t`Failed to delete one or more instance groups.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</>
);
}
export default withI18n()(InstanceGroupList);
export default InstanceGroupList;

View File

@@ -1,7 +1,6 @@
import React, { useState, useCallback, useEffect } from 'react';
import { useLocation, useRouteMatch, Link } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t, plural } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection, DropdownItem } from '@patternfly/react-core';
import { InventoriesAPI } from '../../../api';
import useRequest, { useDeleteItems } from '../../../util/useRequest';
@@ -25,7 +24,7 @@ const QS_CONFIG = getQSConfig('inventory', {
order_by: 'name',
});
function InventoryList({ i18n }) {
function InventoryList() {
const location = useLocation();
const match = useRouteMatch();
const [selected, setSelected] = useState([]);
@@ -132,8 +131,8 @@ function InventoryList({ i18n }) {
selected[0]
);
const addInventory = i18n._(t`Add inventory`);
const addSmartInventory = i18n._(t`Add smart inventory`);
const addInventory = t`Add inventory`;
const addSmartInventory = t`Add smart inventory`;
const addButton = (
<AddDropDownButton
key="add"
@@ -166,30 +165,30 @@ function InventoryList({ i18n }) {
hasContentLoading={hasContentLoading}
items={inventories}
itemCount={itemCount}
pluralizedItemName={i18n._(t`Inventories`)}
pluralizedItemName={t`Inventories`}
qsConfig={QS_CONFIG}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
]}
toolbarSortColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name',
},
]}
@@ -197,11 +196,11 @@ function InventoryList({ i18n }) {
toolbarRelatedSearchableKeys={relatedSearchableKeys}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Status`)}</HeaderCell>
<HeaderCell>{i18n._(t`Type`)}</HeaderCell>
<HeaderCell>{i18n._(t`Organization`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Status`}</HeaderCell>
<HeaderCell>{t`Type`}</HeaderCell>
<HeaderCell>{t`Organization`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderToolbar={props => (
@@ -217,14 +216,22 @@ function InventoryList({ i18n }) {
key="delete"
onDelete={handleInventoryDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Inventories`)}
pluralizedItemName={t`Inventories`}
deleteDetailsRequests={deleteDetailsRequests}
warningMessage={plural(selected.length, {
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.',
})}
deleteMessage={
<Plural
value={selected.length}
one="This invetory is currently being used by some temeplates. Are you sure you want to delete it?"
other="Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?"
/>
}
warningMessage={
<Plural
value={selected.length}
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."
/>
}
/>,
]}
/>
@@ -251,15 +258,15 @@ function InventoryList({ i18n }) {
<AlertModal
isOpen={deletionError}
variant="error"
aria-label={i18n._(t`Deletion Error`)}
title={i18n._(t`Error!`)}
aria-label={t`Deletion Error`}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more inventories.`)}
{t`Failed to delete one or more inventories.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</PageSection>
);
}
export default withI18n()(InventoryList);
export default InventoryList;

View File

@@ -1,7 +1,6 @@
import React, { useCallback, useEffect } from 'react';
import { useParams, useLocation } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Button, Tooltip } from '@patternfly/react-core';
import useRequest, {
@@ -29,7 +28,7 @@ const QS_CONFIG = getQSConfig('inventory', {
order_by: 'name',
});
function InventorySourceList({ i18n }) {
function InventorySourceList() {
const { inventoryType, id } = useParams();
const { search } = useLocation();
@@ -159,7 +158,7 @@ function InventorySourceList({ i18n }) {
}
items={sources}
itemCount={sourceCount}
pluralizedItemName={i18n._(t`Inventory Sources`)}
pluralizedItemName={t`Inventory Sources`}
qsConfig={QS_CONFIG}
renderToolbar={props => (
<DatalistToolbar
@@ -178,27 +177,30 @@ function InventorySourceList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Inventory Sources`)}
pluralizedItemName={t`Inventory Sources`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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"
/>
}
/>,
...(canSyncSources
? [
<Tooltip
key="update"
content={i18n._(t`Sync all sources`)}
content={t`Sync all sources`}
position="top"
>
<Button
ouiaId="sync-all-button"
onClick={syncAll}
aria-label={i18n._(t`Sync all`)}
aria-label={t`Sync all`}
variant="secondary"
>
{i18n._(t`Sync all`)}
{t`Sync all`}
</Button>
</Tooltip>,
]
@@ -227,30 +229,30 @@ function InventorySourceList({ i18n }) {
/>
{syncError && (
<AlertModal
aria-label={i18n._(t`Sync error`)}
aria-label={t`Sync error`}
isOpen={syncError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={dismissError}
>
{i18n._(t`Failed to sync some or all inventory sources.`)}
{t`Failed to sync some or all inventory sources.`}
<ErrorDetail error={syncError} />
</AlertModal>
)}
{(deletionError || deleteRelatedResourcesError) && (
<AlertModal
aria-label={i18n._(t`Delete error`)}
aria-label={t`Delete error`}
isOpen={deletionError || deleteRelatedResourcesError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more inventory sources.`)}
{t`Failed to delete one or more inventory sources.`}
<ErrorDetail error={deletionError || deleteRelatedResourcesError} />
</AlertModal>
)}
</>
);
}
export default withI18n()(InventorySourceList);
export default InventorySourceList;

View File

@@ -1,7 +1,6 @@
import React, { useState, useEffect, useCallback } from 'react';
import { useLocation, useRouteMatch } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { OrganizationsAPI } from '../../../api';
@@ -27,7 +26,7 @@ const QS_CONFIG = getQSConfig('organization', {
order_by: 'name',
});
function OrganizationsList({ i18n }) {
function OrganizationsList() {
const location = useLocation();
const match = useRouteMatch();
@@ -130,24 +129,24 @@ function OrganizationsList({ i18n }) {
hasContentLoading={hasContentLoading}
items={organizations}
itemCount={organizationCount}
pluralizedItemName={i18n._(t`Organizations`)}
pluralizedItemName={t`Organizations`}
qsConfig={QS_CONFIG}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
]}
@@ -155,10 +154,10 @@ function OrganizationsList({ i18n }) {
toolbarRelatedSearchableKeys={relatedSearchableKeys}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Members`)}</HeaderCell>
<HeaderCell>{i18n._(t`Teams`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Members`}</HeaderCell>
<HeaderCell>{t`Teams`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderToolbar={props => (
@@ -176,12 +175,15 @@ function OrganizationsList({ i18n }) {
key="delete"
onDelete={handleOrgDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Organizations`)}
pluralizedItemName={t`Organizations`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
one="This organization is currently being by other resources. Are you sure you want to delete it?"
other="Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?"
/>
}
/>,
]}
/>
@@ -205,10 +207,10 @@ function OrganizationsList({ i18n }) {
<AlertModal
isOpen={deletionError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more organizations.`)}
{t`Failed to delete one or more organizations.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</>
@@ -216,4 +218,4 @@ function OrganizationsList({ i18n }) {
}
export { OrganizationsList as _OrganizationsList };
export default withI18n()(OrganizationsList);
export default OrganizationsList;

View File

@@ -1,7 +1,6 @@
import React, { Fragment, useState, useEffect, useCallback } from 'react';
import { useLocation, useRouteMatch } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { ProjectsAPI } from '../../../api';
@@ -29,7 +28,7 @@ const QS_CONFIG = getQSConfig('project', {
order_by: 'name',
});
function ProjectList({ i18n }) {
function ProjectList() {
const location = useLocation();
const match = useRouteMatch();
const [selected, setSelected] = useState([]);
@@ -130,52 +129,52 @@ function ProjectList({ i18n }) {
hasContentLoading={hasContentLoading}
items={projects}
itemCount={itemCount}
pluralizedItemName={i18n._(t`Projects`)}
pluralizedItemName={t`Projects`}
qsConfig={QS_CONFIG}
onRowClick={handleSelect}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
{
name: i18n._(t`Type`),
name: t`Type`,
key: 'or__scm_type',
options: [
[``, i18n._(t`Manual`)],
[`git`, i18n._(t`Git`)],
[`svn`, i18n._(t`Subversion`)],
[`archive`, i18n._(t`Remote Archive`)],
[`insights`, i18n._(t`Red Hat Insights`)],
[``, t`Manual`],
[`git`, t`Git`],
[`svn`, t`Subversion`],
[`archive`, t`Remote Archive`],
[`insights`, t`Red Hat Insights`],
],
},
{
name: i18n._(t`Source Control URL`),
name: t`Source Control URL`,
key: 'scm_url__icontains',
},
{
name: i18n._(t`Modified By (Username)`),
name: t`Modified By (Username)`,
key: 'modified_by__username__icontains',
},
{
name: i18n._(t`Created By (Username)`),
name: t`Created By (Username)`,
key: 'created_by__username__icontains',
},
]}
toolbarSearchableKeys={searchableKeys}
toolbarRelatedSearchableKeys={relatedSearchableKeys}
headerRow={
<HeaderRow qsConfig={QS_CONFIG} isExpandable>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Status`)}</HeaderCell>
<HeaderCell>{i18n._(t`Type`)}</HeaderCell>
<HeaderCell>{i18n._(t`Revision`)}</HeaderCell>
<HeaderCell>{i18n._(t`Actions`)}</HeaderCell>
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Status`}</HeaderCell>
<HeaderCell>{t`Type`}</HeaderCell>
<HeaderCell>{t`Revision`}</HeaderCell>
<HeaderCell>{t`Actions`}</HeaderCell>
</HeaderRow>
}
renderToolbar={props => (
@@ -198,12 +197,15 @@ function ProjectList({ i18n }) {
key="delete"
onDelete={handleProjectDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Projects`)}
pluralizedItemName={t`Projects`}
deleteDetailsRequests={deleteDetailsRequests}
deleteMessage={i18n._(
'{numItemsToDelete, 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?}}',
{ numItemsToDelete: selected.length }
)}
deleteMessage={
<Plural
value={selected.length}
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?"
/>
}
/>,
]}
/>
@@ -230,15 +232,15 @@ function ProjectList({ i18n }) {
<AlertModal
isOpen={deletionError}
variant="error"
aria-label={i18n._(t`Deletion Error`)}
title={i18n._(t`Error!`)}
aria-label={t`Deletion Error`}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more projects.`)}
{t`Failed to delete one or more projects.`}
<ErrorDetail error={deletionError} />
</AlertModal>
</Fragment>
);
}
export default withI18n()(ProjectList);
export default ProjectList;

View File

@@ -1,7 +1,6 @@
import React, { useCallback, useEffect } from 'react';
import { useLocation, useRouteMatch } from 'react-router-dom';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { t, Plural } from '@lingui/macro';
import { Card, PageSection } from '@patternfly/react-core';
import { WorkflowApprovalsAPI } from '../../../api';
import PaginatedTable, {
@@ -29,7 +28,7 @@ const QS_CONFIG = getQSConfig('workflow_approvals', {
order_by: '-started',
});
function WorkflowApprovalsList({ i18n }) {
function WorkflowApprovalsList() {
const location = useLocation();
const match = useRouteMatch();
@@ -167,17 +166,17 @@ function WorkflowApprovalsList({ i18n }) {
}
items={workflowApprovals}
itemCount={count}
pluralizedItemName={i18n._(t`Workflow Approvals`)}
pluralizedItemName={t`Workflow Approvals`}
qsConfig={QS_CONFIG}
onRowClick={handleSelect}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
name: t`Name`,
key: 'name__icontains',
isDefault: true,
},
{
name: i18n._(t`Description`),
name: t`Description`,
key: 'description__icontains',
},
]}
@@ -207,24 +206,28 @@ function WorkflowApprovalsList({ i18n }) {
key="delete"
onDelete={handleDelete}
itemsToDelete={selected}
pluralizedItemName={i18n._(t`Workflow Approvals`)}
pluralizedItemName={t`Workflow Approvals`}
cannotDelete={item =>
item.status === 'pending' ||
!item.summary_fields.user_capabilities.delete
}
errorMessage={i18n._(
t`These approvals cannot be deleted due to insufficient permissions or a pending job status`
)}
errorMessage={
<Plural
value={selected.length}
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"
/>
}
/>,
]}
/>
)}
headerRow={
<HeaderRow qsConfig={QS_CONFIG}>
<HeaderCell sortKey="name">{i18n._(t`Name`)}</HeaderCell>
<HeaderCell>{i18n._(t`Job`)}</HeaderCell>
<HeaderCell sortKey="started">{i18n._(t`Started`)}</HeaderCell>
<HeaderCell>{i18n._(t`Status`)}</HeaderCell>
<HeaderCell sortKey="name">{t`Name`}</HeaderCell>
<HeaderCell>{t`Job`}</HeaderCell>
<HeaderCell sortKey="started">{t`Started`}</HeaderCell>
<HeaderCell>{t`Status`}</HeaderCell>
</HeaderRow>
}
renderRow={(workflowApproval, index) => (
@@ -247,10 +250,10 @@ function WorkflowApprovalsList({ i18n }) {
<AlertModal
isOpen={deletionError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={clearDeletionError}
>
{i18n._(t`Failed to delete one or more workflow approval.`)}
{t`Failed to delete one or more workflow approval.`}
<ErrorDetail error={deletionError} />
</AlertModal>
)}
@@ -258,12 +261,12 @@ function WorkflowApprovalsList({ i18n }) {
<AlertModal
isOpen={actionError}
variant="error"
title={i18n._(t`Error!`)}
title={t`Error!`}
onClose={dismissActionError}
>
{approveApprovalError
? i18n._(t`Failed to approve one or more workflow approval.`)
: i18n._(t`Failed to deny one or more workflow approval.`)}
? t`Failed to approve one or more workflow approval.`
: t`Failed to deny one or more workflow approval.`}
<ErrorDetail error={actionError} />
</AlertModal>
)}
@@ -271,4 +274,4 @@ function WorkflowApprovalsList({ i18n }) {
);
}
export default withI18n()(WorkflowApprovalsList);
export default WorkflowApprovalsList;