From ca07946c24307ca1f26da360836e391f71cee0b4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 1 Jun 2021 11:39:15 -0400 Subject: [PATCH] Adjust subscription calculation & warning behavior - Add a field for hosts automated across This is populated by the new table we've added. - Update the subs check to check against this, not imported hosts. - Reword messages on inventory import --- .../management/commands/inventory_import.py | 31 +- awx/main/models/events.py | 2 +- awx/main/utils/licensing.py | 14 +- .../DetailList/NumberSinceDetail.jsx | 29 + .../src/components/DetailList/index.js | 1 + awx/ui_next/src/locales/en/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/es/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/fr/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/ja/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/nl/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/zh/messages.po | 2097 +++++++++-------- awx/ui_next/src/locales/zu/messages.po | 2097 +++++++++-------- .../SubscriptionDetail/SubscriptionDetail.jsx | 21 +- .../SubscriptionDetail.test.jsx | 5 +- 14 files changed, 7587 insertions(+), 7195 deletions(-) create mode 100644 awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx diff --git a/awx/main/management/commands/inventory_import.py b/awx/main/management/commands/inventory_import.py index f220c0a6ee..22cb0d0da9 100644 --- a/awx/main/management/commands/inventory_import.py +++ b/awx/main/management/commands/inventory_import.py @@ -36,20 +36,20 @@ from awx.main.utils.pglock import advisory_lock logger = logging.getLogger('awx.main.commands.inventory_import') LICENSE_EXPIRED_MESSAGE = '''\ -License expired. -See http://www.ansible.com/renew for license extension information.''' +Subscription expired. +Contact us (https://www.redhat.com/contact) for subscription extension information.''' LICENSE_NON_EXISTANT_MESSAGE = '''\ -No license. -See http://www.ansible.com/renew for license information.''' +No subscription. +Contact us (https://www.redhat.com/contact) for subscription information.''' LICENSE_MESSAGE = '''\ -Number of licensed instances exceeded, would bring available instances to %(new_count)d, system is licensed for %(instance_count)d. -See http://www.ansible.com/renew for license extension information.''' +%(new_count)d instances have been automated, system is subscribed for %(instance_count)d. +Contact us (https://www.redhat.com/contact) for upgrade information.''' DEMO_LICENSE_MESSAGE = '''\ -Demo mode free license count exceeded, would bring available instances to %(new_count)d, demo mode allows %(instance_count)d. -See http://www.ansible.com/renew for licensing information.''' +Demo mode free subscription count exceeded. Current automated instances are %(new_count)d, demo mode allows %(instance_count)d. +Contact us (https://www.redhat.com/contact) for subscription information.''' def functioning_dir(path): @@ -761,29 +761,22 @@ class Command(BaseCommand): instance_count = license_info.get('instance_count', 0) free_instances = license_info.get('free_instances', 0) time_remaining = license_info.get('time_remaining', 0) + automated_count = license_info.get('automated_instances', 0) hard_error = license_info.get('trial', False) is True or license_info['instance_count'] == 10 - new_count = Host.objects.active_count() if time_remaining <= 0: if hard_error: logger.error(LICENSE_EXPIRED_MESSAGE) - raise PermissionDenied("License has expired!") + raise PermissionDenied("Subscription has expired!") else: logger.warning(LICENSE_EXPIRED_MESSAGE) - # special check for tower-type inventory sources - # but only if running the plugin - TOWER_SOURCE_FILES = ['tower.yml', 'tower.yaml'] - if self.inventory_source.source == 'tower' and any(f in self.inventory_source.source_path for f in TOWER_SOURCE_FILES): - # only if this is the 2nd call to license check, we cannot compare before running plugin - if hasattr(self, 'all_group'): - self.remote_tower_license_compare(local_license_type) if free_instances < 0: d = { - 'new_count': new_count, + 'new_count': automated_count, 'instance_count': instance_count, } if hard_error: logger.error(LICENSE_MESSAGE % d) - raise PermissionDenied('License count exceeded!') + raise PermissionDenied('Subscription count exceeded!') else: logger.warning(LICENSE_MESSAGE % d) diff --git a/awx/main/models/events.py b/awx/main/models/events.py index 4cf78ebc0c..222eb22438 100644 --- a/awx/main/models/events.py +++ b/awx/main/models/events.py @@ -552,7 +552,7 @@ class JobEvent(BasePlaybookEvent): summaries = dict() updated_hosts_list = list() for host in hostnames: - updated_hosts_list.append(host) + updated_hosts_list.append(host.lower()) host_id = self.host_map.get(host, None) if host_id not in existing_host_ids: host_id = None diff --git a/awx/main/utils/licensing.py b/awx/main/utils/licensing.py index e21f98a00f..da2ceedde7 100644 --- a/awx/main/utils/licensing.py +++ b/awx/main/utils/licensing.py @@ -35,7 +35,7 @@ from django.conf import settings from django.utils.translation import ugettext_lazy as _ # AWX -from awx.main.models import Host +from awx.main.models import Host, HostMetric, Instance MAX_INSTANCES = 9999999 @@ -383,12 +383,20 @@ class Licenser(object): current_instances = Host.objects.active_count() else: current_instances = 0 + license_date = int(attrs.get('license_date', 0) or 0) + automated_instances = HostMetric.objects.count() + first_host = HostMetric.objects.only('first_automation').order_by('first_automation').first() + if first_host: + automated_since = int(first_host.first_automation.timestamp()) + else: + automated_since = int(Instance.objects.order_by('id').first().created.timestamp()) instance_count = int(attrs.get('instance_count', 0)) attrs['current_instances'] = current_instances - free_instances = instance_count - current_instances + attrs['automated_instances'] = automated_instances + attrs['automated_since'] = automated_since + free_instances = instance_count - automated_instances attrs['free_instances'] = max(0, free_instances) - license_date = int(attrs.get('license_date', 0) or 0) current_date = int(time.time()) time_remaining = license_date - current_date attrs['time_remaining'] = time_remaining diff --git a/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx b/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx new file mode 100644 index 0000000000..6f58783fea --- /dev/null +++ b/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { node, string } from 'prop-types'; +import { t } from '@lingui/macro'; +import styled from 'styled-components'; +import { formatDateString } from '../../util/dates'; +import _Detail from './Detail'; + +const Detail = styled(_Detail)` + word-break: break-word; +`; + +function NumberSinceDetail({ label, number, date, dataCy = null }) { + const dateStr = formatDateString(date); + + return ( + + ); +} +NumberSinceDetail.propTypes = { + label: node.isRequired, + number: string.isRequired, + date: string.isRequired, +}; + +export default NumberSinceDetail; diff --git a/awx/ui_next/src/components/DetailList/index.js b/awx/ui_next/src/components/DetailList/index.js index a393fe72a0..690303f6d0 100644 --- a/awx/ui_next/src/components/DetailList/index.js +++ b/awx/ui_next/src/components/DetailList/index.js @@ -5,6 +5,7 @@ export { default as UserDateDetail } from './UserDateDetail'; export { default as DetailBadge } from './DetailBadge'; export { default as ArrayDetail } from './ArrayDetail'; export { default as LaunchedByDetail } from './LaunchedByDetail'; +export { default as NumberSinceDetail } from './NumberSinceDetail'; /* NOTE: CodeDetail cannot be imported here, as it causes circular dependencies in testing environment. Import it directly from diff --git a/awx/ui_next/src/locales/en/messages.po b/awx/ui_next/src/locales/en/messages.po index 203cf0f8c0..cb674f3e59 100644 --- a/awx/ui_next/src/locales/en/messages.po +++ b/awx/ui_next/src/locales/en/messages.po @@ -50,7 +50,7 @@ msgstr "/ (project root)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "0 (Normal)" @@ -71,7 +71,7 @@ msgstr "1 (Info)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "1 (Verbose)" @@ -87,7 +87,7 @@ msgstr "2 (Debug)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "2 (More Verbose)" @@ -98,7 +98,7 @@ msgstr "2 (More Verbose)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "3 (Debug)" @@ -109,7 +109,7 @@ msgstr "3 (Debug)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "4 (Connection Debug)" @@ -139,7 +139,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." @@ -173,7 +173,7 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -192,7 +192,7 @@ msgid "Access" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "Access Token Expiration" @@ -209,51 +209,51 @@ msgstr "Account token" msgid "Action" msgstr "Action" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "Actions" @@ -272,7 +272,7 @@ msgid "Activity" msgstr "Activity" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "Activity Stream" @@ -281,7 +281,7 @@ msgstr "Activity Stream" msgid "Activity Stream settings" msgstr "Activity Stream settings" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "Activity Stream type selector" @@ -291,10 +291,6 @@ msgstr "Actor" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" @@ -331,7 +327,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:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "Add container group" @@ -343,15 +339,15 @@ msgstr "Add existing group" msgid "Add existing host" msgstr "Add existing host" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "Add instance group" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "Add inventory" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "Add job template" @@ -363,23 +359,23 @@ msgstr "Add new group" msgid "Add new host" msgstr "Add new host" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "Add resource type" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "Add smart inventory" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "Add team permissions" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "Add user permissions" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "Add workflow template" @@ -388,7 +384,7 @@ msgstr "Add workflow template" #~ msgstr "Adminisration" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "" @@ -396,8 +392,8 @@ msgstr "" #~ msgid "Admins" #~ msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "Advanced" @@ -448,13 +444,17 @@ msgstr "Alert modal" msgid "All" msgstr "All" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "All job types" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "All jobs" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "Allow Branch Override" @@ -463,7 +463,7 @@ msgstr "Allow Branch Override" msgid "Allow Provisioning Callbacks" msgstr "Allow Provisioning Callbacks" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -475,7 +475,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "Allow changing the Source Control branch or revision in a job template that uses this project." -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "Allowed URIs list, space separated" @@ -536,10 +536,10 @@ msgstr "Answer variable name" msgid "Any" msgstr "Any" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "Application" @@ -566,17 +566,17 @@ msgstr "Application name" msgid "Application not found." msgstr "Application not found." -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "Applications & Tokens" @@ -660,7 +660,7 @@ msgstr "" msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Are you sure you want to submit the request to cancel this job?" @@ -669,16 +669,17 @@ msgstr "Are you sure you want to submit the request to cancel this job?" msgid "Arguments" msgstr "Arguments" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "Artifacts" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "Associate" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "Associate role error" @@ -686,7 +687,7 @@ msgstr "Associate role error" msgid "Association modal" msgstr "Association modal" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "At least one value must be selected for this field." @@ -703,12 +704,12 @@ msgstr "" #~ msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "Authorization Code Expiration" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "Authorization grant type" @@ -728,7 +729,7 @@ msgstr "Azure AD settings" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -789,7 +790,7 @@ msgstr "Back to Schedules" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -881,7 +882,7 @@ msgstr "" msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "Browse" @@ -889,7 +890,7 @@ msgstr "Browse" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." @@ -900,7 +901,7 @@ msgstr "CPU {0}" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "Cache Timeout" @@ -924,38 +925,38 @@ msgstr "Cache timeout (seconds)" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "" @@ -964,8 +965,8 @@ msgid "Cancel Inventory Source Sync" msgstr "Cancel Inventory Source Sync" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "Cancel Job" @@ -978,8 +979,8 @@ msgstr "Cancel Project Sync" msgid "Cancel Sync" msgstr "Cancel Sync" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "Cancel job" @@ -991,7 +992,7 @@ msgstr "Cancel link changes" msgid "Cancel link removal" msgstr "Cancel link removal" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "Cancel lookup" @@ -1029,12 +1030,12 @@ msgstr "Cancel subscription edit" #~ msgstr "Cancel sync source" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "Cancel {0}" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1065,7 +1066,7 @@ msgstr "" #~ msgid "Cannot find route {0}." #~ msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "Capacity" @@ -1116,7 +1117,7 @@ msgid "Channel" msgstr "Channel" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "Check" @@ -1132,7 +1133,7 @@ msgstr "Check whether the given field's value is present in the list provided; e msgid "Choose a .json file" msgstr "Choose a .json file" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "Choose a Notification Type" @@ -1140,7 +1141,7 @@ msgstr "Choose a Notification Type" msgid "Choose a Playbook Directory" msgstr "Choose a Playbook Directory" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "Choose a Source Control Type" @@ -1149,7 +1150,7 @@ msgid "Choose a Webhook Service" msgstr "Choose a Webhook Service" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "Choose a job type" @@ -1157,7 +1158,7 @@ msgstr "Choose a job type" msgid "Choose a module" msgstr "Choose a module" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "Choose a source" @@ -1207,20 +1208,20 @@ msgstr "Choose the type of resource that will be receiving new roles. For examp #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "Clean" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "Clear all filters" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "Clear subscription" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "Clear subscription selection" @@ -1232,7 +1233,7 @@ msgstr "Click an available node to create a new link. Click outside the graph t msgid "Click the Edit button below to reconfigure the node." msgstr "Click the Edit button below to reconfigure the node." -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "Click this button to verify connection to the secret management system using the selected credential and specified inputs." @@ -1266,7 +1267,7 @@ msgid "Client secret" msgstr "Client secret" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "Client type" @@ -1275,7 +1276,7 @@ msgstr "Client type" msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "Close subscription modal" @@ -1287,7 +1288,7 @@ msgstr "Cloud" msgid "Collapse" msgstr "" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1310,11 +1311,11 @@ msgstr "Command" #~ msgid "Completed jobs" #~ msgstr "Completed jobs" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "Compliant" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "Concurrent Jobs" @@ -1328,11 +1329,11 @@ msgstr "Confirm" msgid "Confirm Delete" msgstr "Confirm Delete" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "Confirm Disable Local Authorization" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "Confirm Password" @@ -1348,7 +1349,7 @@ msgstr "Confirm cancellation" msgid "Confirm delete" msgstr "Confirm delete" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "Confirm disassociate" @@ -1368,7 +1369,7 @@ msgstr "Confirm removal of all nodes" msgid "Confirm revert all" msgstr "Confirm revert all" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "Confirm selection" @@ -1415,7 +1416,7 @@ msgstr "" "Control the level of output ansible\n" "will produce as the playbook executes." -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1490,8 +1491,8 @@ msgstr "Copyright" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "Create" @@ -1618,25 +1619,25 @@ msgstr "Create new source" msgid "Create user token" msgstr "Create user token" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1658,38 +1659,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1697,26 +1699,26 @@ msgid "Created By (Username)" msgstr "Created By (Username)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "Created by (username)" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "Credential" @@ -1725,20 +1727,20 @@ msgstr "Credential" msgid "Credential Input Sources" msgstr "Credential Input Sources" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "Credential Name" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "Credential Type" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1756,11 +1758,11 @@ msgstr "Credential passwords" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "Credential to authenticate with a protected container registry." @@ -1771,21 +1773,21 @@ msgstr "Credential type not found." #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "" @@ -1798,7 +1800,7 @@ msgstr "Credentials that require passwords on launch are not permitted. Please msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "Custom pod spec" @@ -1818,8 +1820,8 @@ msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an e msgid "Customize messages…" msgstr "Customize messages…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "Customize pod specification" @@ -1829,11 +1831,11 @@ msgid "DELETED" msgstr "DELETED" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "Dashboard (all activity)" @@ -1852,11 +1854,11 @@ msgstr "Day" msgid "Days of Data to Keep" msgstr "Days of Data to Keep" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "Days remaining" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "Debug" @@ -1870,7 +1872,7 @@ msgid "Default" msgstr "Default" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "Default Execution Environment" @@ -1899,32 +1901,32 @@ msgstr "Define system-level features and functions" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1951,22 +1953,22 @@ msgstr "Delete Execution Environment" #~ msgid "Delete Groups?" #~ msgstr "Delete Groups?" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "Delete Host" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "Delete Inventory" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "Delete Job" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "Delete Job Template" @@ -1982,15 +1984,15 @@ msgstr "Delete Organization" msgid "Delete Project" msgstr "Delete Project" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "Delete Questions" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "Delete Schedule" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "Delete Survey" @@ -2010,7 +2012,7 @@ msgstr "Delete User Token" msgid "Delete Workflow Approval" msgstr "Delete Workflow Approval" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "Delete Workflow Job Template" @@ -2023,20 +2025,20 @@ msgstr "Delete all nodes" msgid "Delete application" msgstr "Delete application" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "Delete credential type" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "Delete error" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "Delete instance group" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "Delete inventory source" @@ -2045,11 +2047,11 @@ msgstr "Delete inventory source" msgid "Delete on Update" msgstr "Delete on Update" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "Delete smart inventory" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -2091,16 +2093,16 @@ msgstr "Delete {pluralizedItemName}?" msgid "Deleted" msgstr "Deleted" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "Deletion Error" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "Deletion error" @@ -2125,75 +2127,76 @@ msgstr "Denied by {0} - {1}" msgid "Deny" msgstr "Deny" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "Deprecated" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "" @@ -2332,13 +2335,13 @@ msgstr "Disable SSL verification" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "Disassociate" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "Disassociate group from host?" @@ -2354,17 +2357,17 @@ msgstr "Disassociate instance from instance group?" msgid "Disassociate related group(s)?" msgstr "Disassociate related group(s)?" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "Disassociate related team(s)?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "Disassociate role" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "Disassociate role!" @@ -2372,7 +2375,7 @@ msgstr "Disassociate role!" msgid "Disassociate?" msgstr "Disassociate?" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2390,8 +2393,8 @@ msgstr "" msgid "Documentation." msgstr "Documentation." -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2402,7 +2405,7 @@ msgstr "Done" msgid "Download Output" msgstr "Download Output" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "E-mail" @@ -2430,7 +2433,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2442,23 +2445,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "Each time a job runs using this project, update the revision of the project prior to starting the job." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2485,17 +2488,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2690,9 +2693,9 @@ msgid "Elapsed time that the job ran" msgstr "Elapsed time that the job ran" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "Email" @@ -2703,11 +2706,11 @@ msgstr "Email Options" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "Enable Concurrent Jobs" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "Enable Fact Storage" @@ -2720,14 +2723,14 @@ msgstr "Enable HTTPS certificate verification" msgid "Enable Privilege Escalation" msgstr "Enable Privilege Escalation" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "Enable Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "Enable Webhook for this workflow job template." @@ -2752,7 +2755,7 @@ msgstr "Enable privilege escalation" msgid "Enable simplified login for your {brandName} applications" msgstr "Enable simplified login for your {brandName} applications" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "Enable webhook for this template." @@ -2783,7 +2786,7 @@ msgstr "Enabled Variable" #~ "and request a configuration update using this job\n" #~ "template." -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2880,7 +2883,7 @@ msgstr "" #~ "Use the radio button to toggle between the two. Refer to the\n" #~ "documentation for example syntax." -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" @@ -2958,11 +2961,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." @@ -2998,16 +3001,16 @@ msgstr "Enter variables using either JSON or YAML syntax. Use the radio button t #~ msgid "Environment" #~ msgstr "Environment" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "Error" @@ -3032,91 +3035,92 @@ msgstr "Error saving the workflow!" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "Error!" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "Error:" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "Event" @@ -3132,7 +3136,7 @@ msgstr "Event detail modal" msgid "Event summary not available" msgstr "Event summary not available" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "Events" @@ -3156,7 +3160,7 @@ msgstr "Example URLs for Subversion Source Control include:" msgid "Examples include:" msgstr "Examples include:" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "Examples:" @@ -3174,8 +3178,8 @@ msgstr "Execute when the parent node results in a successful state." #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "Execution Environment" @@ -3183,11 +3187,11 @@ msgstr "Execution Environment" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3228,8 +3232,8 @@ msgstr "Exit Without Saving" msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "Expand input" @@ -3243,8 +3247,8 @@ msgstr "Expected at least one of client_email, project_id or private_key to be p msgid "Expiration" msgstr "Expiration" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3253,11 +3257,11 @@ msgstr "Expiration" msgid "Expires" msgstr "Expires" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "Expires on" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "Expires on UTC" @@ -3271,7 +3275,7 @@ msgstr "Expires on {0}" msgid "Explanation" msgstr "Explanation" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "External Secret Management System" @@ -3288,15 +3292,15 @@ msgid "FINISHED:" msgstr "FINISHED:" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "Facts" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3313,11 +3317,15 @@ msgid "Failed Hosts" msgstr "Failed Hosts" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "Failed hosts" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "Failed jobs" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "Failed to approve one or more workflow approval." @@ -3329,16 +3337,17 @@ msgstr "Failed to approve workflow approval." msgid "Failed to assign roles properly" msgstr "Failed to assign roles properly" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "Failed to associate role" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "Failed to associate." @@ -3355,12 +3364,12 @@ msgstr "Failed to cancel Project Sync" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "Failed to cancel inventory source sync." -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "Failed to cancel one or more jobs." #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "Failed to cancel {0}" @@ -3394,24 +3403,24 @@ msgstr "Failed to delete application." msgid "Failed to delete credential." msgstr "Failed to delete credential." -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "Failed to delete group {0}." -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "Failed to delete host." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "Failed to delete inventory source {name}." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "Failed to delete inventory." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "Failed to delete job template." @@ -3419,19 +3428,19 @@ msgstr "Failed to delete job template." msgid "Failed to delete notification." msgstr "Failed to delete notification." -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "Failed to delete one or more applications." -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "Failed to delete one or more credential types." -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "Failed to delete one or more credentials." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "Failed to delete one or more execution environments" @@ -3439,20 +3448,20 @@ msgstr "Failed to delete one or more execution environments" msgid "Failed to delete one or more groups." msgstr "Failed to delete one or more groups." -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "Failed to delete one or more hosts." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "Failed to delete one or more instance groups." -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: 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:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "Failed to delete one or more inventory sources." @@ -3460,31 +3469,31 @@ 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:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "Failed to delete one or more jobs." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "Failed to delete one or more notification template." -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "Failed to delete one or more organizations." -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "Failed to delete one or more projects." -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "Failed to delete one or more schedules." -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "Failed to delete one or more teams." -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "Failed to delete one or more templates." @@ -3496,11 +3505,11 @@ msgstr "Failed to delete one or more tokens." msgid "Failed to delete one or more user tokens." msgstr "Failed to delete one or more user tokens." -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "Failed to delete one or more users." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "Failed to delete one or more workflow approval." @@ -3516,16 +3525,16 @@ msgstr "Failed to delete project." msgid "Failed to delete role" msgstr "Failed to delete role" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "Failed to delete role." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "Failed to delete schedule." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "Failed to delete smart inventory." @@ -3541,7 +3550,7 @@ msgstr "Failed to delete user." msgid "Failed to delete workflow approval." msgstr "Failed to delete workflow approval." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "Failed to delete workflow job template." @@ -3550,7 +3559,7 @@ msgstr "Failed to delete workflow job template." msgid "Failed to delete {name}." msgstr "Failed to delete {name}." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "Failed to deny one or more workflow approval." @@ -3559,7 +3568,7 @@ msgid "Failed to deny workflow approval." msgstr "Failed to deny workflow approval." #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "Failed to disassociate one or more groups." @@ -3572,7 +3581,7 @@ msgstr "Failed to disassociate one or more hosts." msgid "Failed to disassociate one or more instances." msgstr "Failed to disassociate one or more instances." -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "Failed to disassociate one or more teams." @@ -3610,7 +3619,7 @@ msgstr "Failed to sync inventory source." msgid "Failed to sync project." msgstr "Failed to sync project." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "Failed to sync some or all inventory sources." @@ -3653,7 +3662,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "False" @@ -3669,7 +3678,7 @@ msgstr "Field contains value." msgid "Field ends with value." msgstr "Field ends with value." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Field for passing a custom Kubernetes or OpenShift Pod specification." @@ -3685,7 +3694,7 @@ msgstr "Field starts with value." msgid "Fifth" msgstr "Fifth" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "File Difference" @@ -3697,7 +3706,7 @@ msgstr "File upload rejected. Please select a single .json file." msgid "File, directory or script" msgstr "File, directory or script" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "Finish Time" @@ -3715,11 +3724,11 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "First Name" @@ -3744,7 +3753,7 @@ msgstr "Fit the graph to the available screen size" msgid "Float" msgstr "Float" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3779,7 +3788,7 @@ msgstr "For more information, refer to the" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "Forks" @@ -3806,30 +3815,30 @@ msgid "Friday" msgstr "Friday" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "Galaxy Credentials" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy credentials must be owned by an Organization." -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "Gathering Facts" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "Get subscription" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "Get subscriptions" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3878,7 +3887,7 @@ msgstr "GitHub settings" msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "Global Default Execution Environment" @@ -3887,7 +3896,7 @@ msgstr "Global Default Execution Environment" msgid "Globally Available" msgstr "Globally Available" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "Globally available execution environment can not be reassigned to a specific Organization" @@ -3920,7 +3929,7 @@ msgid "Google OAuth2" msgstr "Google OAuth2" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "Grafana" @@ -3949,7 +3958,7 @@ msgstr "Group" msgid "Group details" msgstr "Group details" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "Group type" @@ -3960,7 +3969,7 @@ msgstr "Group type" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3991,7 +4000,7 @@ msgid "Hide description" msgstr "Hide description" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "Hipchat" @@ -4000,17 +4009,17 @@ msgstr "Hipchat" msgid "Host" msgstr "Host" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "Host Async Failure" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "Host Async OK" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "Host Config Key" @@ -4022,11 +4031,11 @@ msgstr "Host Count" msgid "Host Details" msgstr "Host Details" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "Host Failed" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "Host Failure" @@ -4039,27 +4048,27 @@ msgstr "Host Filter" msgid "Host Name" msgstr "Host Name" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "Host OK" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "Host Polling" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "Host Retry" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "Host Skipped" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "Host Started" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "Host Unreachable" @@ -4081,10 +4090,10 @@ msgid "Host status information for this job is unavailable." msgstr "Host status information for this job is unavailable." #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -4093,8 +4102,8 @@ msgstr "Host status information for this job is unavailable." #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -4102,18 +4111,26 @@ msgstr "Host status information for this job is unavailable." msgid "Hosts" msgstr "Hosts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "Hosts automated" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "Hosts available" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "Hosts imported" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "Hosts remaining" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "Hosts used" +#~ msgid "Hosts used" +#~ msgstr "Hosts used" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -4123,9 +4140,9 @@ msgstr "Hour" #~ msgid "I agree to the End User License Agreement" #~ msgstr "I agree to the End User License Agreement" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "ID" @@ -4146,7 +4163,7 @@ msgid "ID of the panel (optional)" msgstr "ID of the panel (optional)" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "IRC" @@ -4244,7 +4261,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4266,7 +4283,7 @@ msgstr "" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4284,7 +4301,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4296,11 +4313,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "If enabled, simultaneous runs of this job template will be allowed." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "If enabled, simultaneous runs of this workflow job template will be allowed." -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4314,11 +4331,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "If you are ready to upgrade or renew, please <0>contact us." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4344,11 +4361,11 @@ msgstr "" #~ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4358,7 +4375,7 @@ msgstr "Image" #~ msgid "Image name" #~ msgstr "Image name" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "Including File" @@ -4384,17 +4401,17 @@ msgstr "" msgid "Initiated By" msgstr "Initiated By" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "Initiated by" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "Initiated by (username)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "Injector configuration" @@ -4412,8 +4429,8 @@ msgstr "Input configuration" #~ msgid "Insights Analytics dashboard" #~ msgstr "Insights Analytics dashboard" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "Insights Credential" @@ -4426,12 +4443,12 @@ msgstr "Insights Credential" #~ msgid "Insights for Ansible" #~ msgstr "Insights for Ansible" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Insights for Ansible Automation Platform dashboard" @@ -4455,14 +4472,14 @@ msgstr "Instance Filters" msgid "Instance Group" msgstr "Instance Group" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4489,7 +4506,7 @@ msgid "Instance groups" msgstr "Instance groups" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4509,7 +4526,7 @@ msgstr "Integer" msgid "Invalid email address" msgstr "Invalid email address" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "Invalid file format. Please upload a valid Red Hat Subscription Manifest." @@ -4523,11 +4540,11 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4538,15 +4555,15 @@ msgstr "" msgid "Inventories with sources cannot be copied" msgstr "Inventories with sources cannot be copied" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4556,7 +4573,7 @@ msgstr "Inventories with sources cannot be copied" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4599,14 +4616,14 @@ msgstr "Inventory Source Sync" msgid "Inventory Source Sync Error" msgstr "Inventory Source Sync Error" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "Inventory Sources" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4619,7 +4636,7 @@ msgid "Inventory Update" msgstr "Inventory Update" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "Inventory file" @@ -4627,11 +4644,11 @@ msgstr "Inventory file" msgid "Inventory not found." msgstr "Inventory not found." -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "Inventory sync" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "Inventory sync failures" @@ -4641,15 +4658,15 @@ msgstr "Inventory sync failures" #~ msgid "Isolated" #~ msgstr "Isolated" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "Item Failed" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "Item OK" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "Item Skipped" @@ -4692,22 +4709,22 @@ msgstr "JSON:" msgid "January" msgstr "January" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "Job" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "Job Cancel Error" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "Job Delete Error" @@ -4717,7 +4734,7 @@ msgstr "Job Slice" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "Job Slicing" @@ -4732,12 +4749,12 @@ msgstr "Job Status" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "Job Tags" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4767,7 +4784,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:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4775,15 +4792,15 @@ msgstr "Job Templates with credentials that prompt for passwords cannot be selec #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "Job Type" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "Job status" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "Job status graph tab" @@ -4793,10 +4810,10 @@ msgstr "Job status graph tab" msgid "Job templates" msgstr "Job templates" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4847,7 +4864,7 @@ msgstr "Key select" msgid "Key typeahead" msgstr "Key typeahead" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "Keyword" @@ -4904,7 +4921,7 @@ msgstr "LDAP4" msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "Label Name" @@ -4915,8 +4932,8 @@ msgstr "Label Name" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "Labels" @@ -4937,15 +4954,15 @@ msgstr "Last Login" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4962,15 +4979,15 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "Last Ran" @@ -4987,8 +5004,8 @@ msgstr "Last job" msgid "Last job run" msgstr "Last job run" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -5007,10 +5024,10 @@ msgstr "Last used" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "Launch" @@ -5049,7 +5066,7 @@ msgstr "Launch | {0}" msgid "Launched By" msgstr "Launched By" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "Launched By (Username)" @@ -5061,11 +5078,11 @@ msgstr "Launched By (Username)" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "Learn more about Insights for Ansible" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "Learn more about Insights for Ansible Automation Platform" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "Leave this field blank to make the execution environment globally available." @@ -5093,7 +5110,7 @@ msgstr "Less than or equal to comparison." #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -5102,8 +5119,8 @@ msgstr "Less than or equal to comparison." #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "Limit" @@ -5150,7 +5167,7 @@ msgid "Logout" msgstr "" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "Lookup modal" @@ -5187,12 +5204,12 @@ msgstr "Machine credential" msgid "Managed by Tower" msgstr "Managed by Tower" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "Managed nodes" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5221,13 +5238,13 @@ msgstr "Management job not found." msgid "Management jobs" msgstr "Management jobs" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5238,12 +5255,12 @@ msgid "March" msgstr "March" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "Mattermost" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "Max Hosts" @@ -5259,12 +5276,12 @@ msgstr "Maximum length" msgid "May" msgstr "May" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "Metadata" @@ -5348,38 +5365,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5387,7 +5405,7 @@ msgid "Modified By (Username)" msgstr "Modified By (Username)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "Modified by (username)" @@ -5453,50 +5471,50 @@ msgstr "Multiple Choice Options" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5517,42 +5535,42 @@ msgstr "Multiple Choice Options" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5560,62 +5578,63 @@ msgstr "Multiple Choice Options" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5627,19 +5646,19 @@ msgstr "Multiple Choice Options" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "" @@ -5663,7 +5682,7 @@ msgstr "Never Updated" msgid "Never expires" msgstr "Never expires" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "New" @@ -5672,14 +5691,14 @@ msgstr "New" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5689,12 +5708,12 @@ msgstr "Next Run" msgid "No" msgstr "No" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "No Hosts Matched" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "No Hosts Remaining" @@ -5732,12 +5751,12 @@ msgstr "No result found" msgid "No results found" msgstr "No results found" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "No subscriptions found" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "No survey questions found." @@ -5745,8 +5764,8 @@ msgstr "No survey questions found." #~ msgid "No {0} Found" #~ msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "No {pluralizedItemName} Found" @@ -5772,7 +5791,7 @@ msgstr "None (run once)" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "Normal User" @@ -5804,7 +5823,7 @@ msgstr "" #~ msgstr "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5873,9 +5892,9 @@ msgstr "Notification Color" msgid "Notification Template not found." msgstr "Notification Template not found." -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5890,16 +5909,16 @@ msgstr "Notification Type" msgid "Notification color" msgstr "Notification color" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "Notification sent successfully" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "Notification timed out" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "Notification type" @@ -5924,7 +5943,7 @@ msgid "November" msgstr "November" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "OK" @@ -5952,7 +5971,7 @@ msgstr "October" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "Off" @@ -5970,7 +5989,7 @@ msgstr "Off" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "On" @@ -6004,12 +6023,12 @@ msgstr "Only Group By" msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "Option Details" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -6036,21 +6055,21 @@ msgstr "Optionally select the credential to use to send status updates back to t #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "Options" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -6061,14 +6080,14 @@ msgstr "Options" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -6078,13 +6097,13 @@ msgstr "Options" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "Organization" @@ -6097,7 +6116,7 @@ msgstr "Organization (Name)" #~ msgid "Organization Add" #~ msgstr "" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "Organization Name" @@ -6111,9 +6130,9 @@ msgstr "Organization not found." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -6132,7 +6151,7 @@ msgstr "" msgid "Other prompts" msgstr "Other prompts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "Out of compliance" @@ -6177,7 +6196,7 @@ msgstr "PUT" #~ msgstr "" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "Pagerduty" @@ -6225,7 +6244,7 @@ msgstr "Pass extra command line changes. There are two ansible command line para #~ "Provide key/value pairs using either YAML or JSON. Refer to the\n" #~ "Ansible Tower documentation for example syntax." -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -6237,7 +6256,7 @@ msgstr "" "Provide key/value pairs using either YAML or JSON. Refer to the\n" "documentation for example syntax." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." @@ -6247,26 +6266,30 @@ msgstr "Pass extra command line variables to the playbook. This is the -e or --e #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "Past 24 hours" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "Past month" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "Past two weeks" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "Past week" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "Pending" @@ -6299,14 +6322,14 @@ msgstr "Play" msgid "Play Count" msgstr "Play Count" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "Play Started" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "Playbook" @@ -6314,7 +6337,7 @@ msgstr "Playbook" msgid "Playbook Check" msgstr "Playbook Check" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "Playbook Complete" @@ -6324,25 +6347,25 @@ msgstr "Playbook Complete" msgid "Playbook Directory" msgstr "Playbook Directory" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "Playbook Run" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "Playbook Started" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook name" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "Playbook run" @@ -6350,7 +6373,7 @@ msgstr "Playbook run" msgid "Plays" msgstr "Plays" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "Please add survey questions." @@ -6363,8 +6386,8 @@ msgstr "Please add survey questions." #~ msgid "Please add {0} {itemName} to populate this list" #~ msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Please add {pluralizedItemName} to populate this list" @@ -6380,7 +6403,7 @@ msgstr "Please click the Start button to begin." msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "Please enter a value." @@ -6392,9 +6415,13 @@ msgstr "Please log in" msgid "Please select a day number between 1 and 31." msgstr "Please select a day number between 1 and 31." +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" +msgstr "Please select an Inventory or check the Prompt on Launch option" + #: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." -msgstr "Please select an Inventory or check the Prompt on Launch option." +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "Please select an Inventory or check the Prompt on Launch option." #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." @@ -6404,7 +6431,7 @@ msgstr "Please select an end date/time that comes after the start date/time." msgid "Please select an organization before editing the host filter" msgstr "Please select an organization before editing the host filter" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "Pod spec override" @@ -6487,8 +6514,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Press Enter to edit. Press ESC to stop editing." #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "Preview" @@ -6504,7 +6531,7 @@ msgstr "Preview" msgid "Private key passphrase" msgstr "Private key passphrase" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "Privilege Escalation" @@ -6513,9 +6540,9 @@ msgid "Privilege escalation password" msgstr "Privilege escalation password" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6553,16 +6580,16 @@ msgstr "Project Update" msgid "Project not found." msgstr "Project not found." -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "Project sync failures" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6584,7 +6611,7 @@ msgstr "Prompt" msgid "Prompt Overrides" msgstr "Prompt Overrides" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6604,8 +6631,8 @@ msgstr "Prompted Values" #~ msgid "Prompts" #~ msgstr "Prompts" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6651,7 +6678,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "Provide key/value pairs using either YAML or JSON." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6667,7 +6694,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." @@ -6677,21 +6704,21 @@ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "Provisioning Callback URL" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "Provisioning Callback details" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "Provisioning Callbacks" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "Pull" @@ -6711,23 +6738,23 @@ msgstr "RADIUS settings" msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "Read" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "Recent Jobs" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "Recent Jobs list tab" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "Recent Templates" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "Recent Templates list tab" @@ -6739,10 +6766,10 @@ msgstr "Recipient List" msgid "Recipient list" msgstr "Recipient list" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" @@ -6755,7 +6782,7 @@ msgstr "Red Hat Satellite 6" msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "Red Hat subscription manifest" @@ -6763,7 +6790,7 @@ msgstr "Red Hat subscription manifest" msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "Redirect URIs" @@ -6783,7 +6810,7 @@ msgstr "Redirecting to subscription detail" msgid "Refer to the" msgstr "Refer to the" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6800,7 +6827,7 @@ msgid "Refresh Token" msgstr "Refresh Token" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "Refresh Token Expiration" @@ -6808,7 +6835,7 @@ msgstr "Refresh Token Expiration" msgid "Regions" msgstr "Regions" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "Registry credential" @@ -6824,8 +6851,8 @@ msgstr "Related Groups" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "Relaunch" @@ -6853,10 +6880,10 @@ msgstr "Relaunch on" msgid "Relaunch using host parameters" msgstr "Relaunch using host parameters" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "Remote Archive" @@ -6879,7 +6906,7 @@ msgstr "Remove Link" msgid "Remove Node" msgstr "Remove Node" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "Remove any local modifications prior to performing an update." @@ -6907,8 +6934,8 @@ msgstr "Replace" msgid "Replace field with new value" msgstr "Replace field with new value" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "Request subscription" @@ -6918,7 +6945,7 @@ msgid "Required" msgstr "Required" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "Resource Name" @@ -6939,7 +6966,7 @@ msgstr "Resource deleted" #~ msgstr "Resource type" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "" @@ -6968,12 +6995,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "Return" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "Return to subscription management." @@ -7017,7 +7044,7 @@ msgid "Revert to factory default." msgstr "Revert to factory default." #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "Revision" @@ -7027,17 +7054,17 @@ msgid "Revision #" msgstr "Revision #" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "Rocket.Chat" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "Role" @@ -7058,7 +7085,7 @@ msgstr "Roles" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "Run" @@ -7089,17 +7116,17 @@ msgstr "Run on" msgid "Run type" msgstr "Run type" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "Running" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "Running Handlers" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "Running Jobs" @@ -7116,7 +7143,7 @@ msgstr "SAML" msgid "SAML settings" msgstr "SAML settings" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "SCM update" @@ -7162,9 +7189,9 @@ msgstr "Saturday" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -7212,9 +7239,9 @@ msgstr "Schedule is inactive" msgid "Schedule is missing rrule" msgstr "Schedule is missing rrule" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -7234,7 +7261,7 @@ msgstr "" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "Scope" @@ -7255,11 +7282,11 @@ msgid "Scroll previous" msgstr "Scroll previous" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "Search is disabled while the job is running" @@ -7288,18 +7315,18 @@ msgstr "See errors on the left" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "Select Credential Type" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "Select Groups" @@ -7332,7 +7359,7 @@ msgstr "Select Labels" msgid "Select Roles to Apply" msgstr "Select Roles to Apply" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "Select Teams" @@ -7352,7 +7379,7 @@ msgstr "Select a Node Type" msgid "Select a Resource Type" msgstr "Select a Resource Type" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7368,11 +7395,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "Select a credential Type" @@ -7397,7 +7424,7 @@ msgstr "Select a module" msgid "Select a playbook" msgstr "Select a playbook" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "Select a project before editing the execution environment." @@ -7406,7 +7433,7 @@ msgid "Select a row to approve" msgstr "Select a row to approve" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "" @@ -7418,7 +7445,7 @@ msgstr "Select a row to deny" msgid "Select a row to disassociate" msgstr "Select a row to disassociate" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "Select a subscription" @@ -7426,7 +7453,7 @@ msgstr "Select a subscription" msgid "Select a valid date and time for this field" msgstr "Select a valid date and time for this field" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7435,29 +7462,29 @@ msgstr "Select a valid date and time for this field" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "Select a value for this field" @@ -7465,12 +7492,12 @@ msgstr "Select a value for this field" msgid "Select a webhook service." msgstr "Select a webhook service." -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "Select an activity type" @@ -7478,15 +7505,15 @@ msgstr "Select an activity type" msgid "Select an instance and a metric to show chart" msgstr "Select an instance and a metric to show chart" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "Select an organization before editing the default execution environment." -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7532,31 +7559,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "Select job type" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "Select period" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "Select roles to apply" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "Select source path" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "Select status" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "Select tags" @@ -7569,7 +7601,7 @@ msgstr "Select the Execution Environment you want this command to run inside." msgid "Select the Instance Groups for this Inventory to run on." msgstr "Select the Instance Groups for this Inventory to run on." -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." @@ -7577,11 +7609,11 @@ msgstr "" "Select the Instance Groups for this Organization\n" "to run on." -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "Select the application that this token will belong to." @@ -7593,7 +7625,7 @@ msgstr "Select the credential you want to use when accessing the remote hosts to #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "Select the custom Python virtual environment for this inventory source sync to run on." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "Select the default execution environment for this organization to run on." @@ -7605,12 +7637,12 @@ msgstr "Select the default execution environment for this organization to run on #~ msgid "Select the default execution environment for this project." #~ msgstr "Select the default execution environment for this project." -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "Select the execution environment for this job template." -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7623,7 +7655,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "Select the inventory containing the hosts you want this job to manage." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7637,16 +7669,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "Select the inventory that this host will belong to." -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "Select the playbook to be executed by this job." -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7658,11 +7690,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "Select the project containing the playbook you want this job to execute." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "Select your Ansible Automation Platform subscription to use." -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "Select {0}" @@ -7674,12 +7706,12 @@ msgstr "Select {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7692,7 +7724,7 @@ msgstr "Select {0}" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7700,8 +7732,8 @@ msgstr "" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "Selected Category" @@ -7725,7 +7757,7 @@ msgstr "September" msgid "Service account JSON file" msgstr "Service account JSON file" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "Set a value for this field" @@ -7738,7 +7770,7 @@ msgstr "Set how many days of data should be retained." msgid "Set preferences for data collection, logos, and logins" msgstr "Set preferences for data collection, logos, and logins" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "Set source path to" @@ -7746,7 +7778,7 @@ msgstr "Set source path to" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "Set the instance online or offline. If offline, jobs will not be assigned to this instance." -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Set to Public or Confidential depending on how secure the client device is." @@ -7780,8 +7812,8 @@ msgstr "Setting name" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" @@ -7795,11 +7827,11 @@ msgstr "Show" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "Show Changes" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "Show all groups" @@ -7817,7 +7849,7 @@ msgstr "Show description" msgid "Show less" msgstr "Show less" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "Show only root groups" @@ -7873,7 +7905,7 @@ msgstr "Simple key select" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "Skip Tags" @@ -7891,7 +7923,7 @@ msgstr "Skip Tags" #~ "to Ansible Tower documentation for details on the usage\n" #~ "of tags." -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7927,7 +7959,7 @@ msgid "Skipped" msgstr "Skipped" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "Slack" @@ -7974,7 +8006,7 @@ msgstr "Sort question order" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "Source" @@ -7989,7 +8021,7 @@ msgstr "Source" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "Source Control Branch" @@ -7999,11 +8031,11 @@ msgstr "Source Control Branch/Tag/Commit" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "Source Control Credential" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "Source Control Credential Type" @@ -8018,18 +8050,18 @@ msgstr "Source Control Refspec" msgid "Source Control Type" msgstr "Source Control Type" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "Source Control URL" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -8049,11 +8081,11 @@ msgstr "Source Variables" msgid "Source Workflow Job" msgstr "Source Workflow Job" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "Source control branch" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "Source details" @@ -8107,7 +8139,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "Specify a scope for the token's access" @@ -8138,7 +8170,7 @@ msgstr "Standard out tab" msgid "Start" msgstr "Start" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "Start Time" @@ -8166,31 +8198,31 @@ msgid "Start sync source" msgstr "Start sync source" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "Started" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "Status" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "Stdout" @@ -8200,7 +8232,7 @@ msgstr "Stdout" msgid "Submit" msgstr "Submit" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -8218,12 +8250,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "Subscription" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "Subscription Details" @@ -8231,11 +8263,11 @@ msgstr "Subscription Details" msgid "Subscription Management" msgstr "Subscription Management" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "Subscription manifest" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "Subscription selection modal" @@ -8243,18 +8275,18 @@ msgstr "Subscription selection modal" msgid "Subscription settings" msgstr "Subscription settings" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "Subscription type" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "Subscriptions table" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -8275,12 +8307,16 @@ msgstr "Success message" msgid "Success message body" msgstr "Success message body" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "Successful jobs" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "Successfully copied to clipboard!" @@ -8294,14 +8330,14 @@ msgstr "Sun" msgid "Sunday" msgstr "Sunday" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "Survey" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "Survey List" @@ -8334,16 +8370,16 @@ msgstr "Sync" msgid "Sync Project" msgstr "Sync Project" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "Sync all" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "Sync all sources" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "Sync error" @@ -8356,17 +8392,17 @@ msgstr "Sync for revision" msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "System Administrator" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "System Auditor" @@ -8374,12 +8410,12 @@ msgstr "System Auditor" #~ msgid "System Settings" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "System Warning" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "System administrators have unrestricted access to all resources." @@ -8391,7 +8427,7 @@ msgstr "TACACS+" msgid "TACACS+ settings" msgstr "TACACS+ settings" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "Tabs" @@ -8410,7 +8446,7 @@ msgstr "Tabs" #~ "Refer to Ansible Tower documentation for details on\n" #~ "the usage of tags." -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8466,7 +8502,7 @@ msgstr "Task" msgid "Task Count" msgstr "Task Count" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "Task Started" @@ -8479,7 +8515,7 @@ msgid "Team" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "" @@ -8490,19 +8526,19 @@ msgstr "Team not found." #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8517,10 +8553,10 @@ msgstr "Template not found." msgid "Template type" msgstr "Template type" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8529,9 +8565,9 @@ msgstr "Template type" msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "Test" @@ -8569,15 +8605,19 @@ msgstr "Text Area" msgid "Textarea" msgstr "Textarea" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "That value was not found. Please enter or select a valid value." + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "The" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "The Execution Environment to be used when one has not been configured for a job template." -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "The Grant type the user must use for acquire tokens for this application" @@ -8595,7 +8635,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8623,11 +8663,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." @@ -8645,11 +8685,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "The full image location, including the container registry, image name, and version tag." -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8663,7 +8703,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8717,7 +8757,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "The tower instance group cannot be deleted." @@ -8793,17 +8833,21 @@ msgstr "These arguments are used with the specified module. You can find informa msgid "Third" msgstr "Third" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "This Project needs to be updated" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "This action will delete the following:" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "This action will disassociate all roles for this user from the selected teams." -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "This action will disassociate the following role from {0}:" @@ -8811,7 +8855,7 @@ msgstr "This action will disassociate the following role from {0}:" msgid "This action will disassociate the following:" msgstr "This action will disassociate the following:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "This container group is currently being by other resources. Are you sure you want to delete it?" @@ -8819,7 +8863,7 @@ msgstr "This container group is currently being by other resources. Are you sure msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "This credential is currently being used by other resources. Are you sure you want to delete it?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "This credential type is currently being used by some credentials and cannot be deleted" @@ -8843,7 +8887,7 @@ msgstr "This credential type is currently being used by some credentials and can #~ "future releases of the Software and to provide\n" #~ "Insights Analytics to subscribers." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8863,7 +8907,7 @@ msgstr "" #~ "future releases of the Software and to provide\n" #~ "Red Hat Insights for Ansible." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8899,7 +8943,7 @@ msgstr "This field may not be blank" msgid "This field must be a number" msgstr "This field must be a number" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "This field must be a number and have a value between {0} and {1}" @@ -8916,7 +8960,7 @@ msgstr "This field must be a regular expression" msgid "This field must be an integer" msgstr "This field must be an integer" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "This field must be at least {0} characters" @@ -8928,9 +8972,10 @@ msgstr "This field must be at least {min} characters" msgid "This field must be greater than 0" msgstr "This field must be greater than 0" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8940,7 +8985,7 @@ msgstr "" msgid "This field must not contain spaces" msgstr "This field must not contain spaces" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "This field must not exceed {0} characters" @@ -8960,11 +9005,11 @@ msgstr "This instance group is currently being by other resources. Are you sure msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "This inventory is currently being used by other resources. Are you sure you want to delete it?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" @@ -8976,7 +9021,7 @@ msgstr "This is the only time the client secret will be shown." msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "This is the only time the token value and associated refresh token value will be shown." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "This job template is currently being used by other resources. Are you sure you want to delete it?" @@ -8993,14 +9038,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "This project is currently on sync and cannot be clicked until sync process completed" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "This project needs to be updated" +#~ msgid "This project needs to be updated" +#~ msgstr "This project needs to be updated" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "This schedule is missing an Inventory" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "This schedule is missing required survey values" @@ -9009,7 +9054,7 @@ msgstr "This schedule is missing required survey values" msgid "This step contains errors" msgstr "This step contains errors" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "This value does not match the password you entered previously. Please confirm that password." @@ -9029,7 +9074,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "This workflow does not have any nodes configured." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" @@ -9042,14 +9087,14 @@ msgstr "Thu" msgid "Thursday" msgstr "Thursday" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "Time" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -9096,7 +9141,7 @@ msgstr "Timed out" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "Timeout" @@ -9195,11 +9240,11 @@ msgstr "Tokens" msgid "Tools" msgstr "Tools" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "Top Pagination" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "Total Jobs" @@ -9213,7 +9258,7 @@ msgstr "Total Nodes" msgid "Total jobs" msgstr "Total jobs" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "Track submodules" @@ -9222,8 +9267,8 @@ msgstr "Track submodules" msgid "Track submodules latest commit on branch" msgstr "Track submodules latest commit on branch" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "Trial" @@ -9233,7 +9278,7 @@ msgstr "Trial" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "True" @@ -9247,59 +9292,59 @@ msgid "Tuesday" msgstr "Tuesday" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "Type" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "Type Details" @@ -9318,7 +9363,7 @@ msgstr "Unavailable" msgid "Undo" msgstr "Undo" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "Unlimited" @@ -9345,7 +9390,7 @@ msgstr "Unsaved changes modal" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "Update Revision on Launch" @@ -9383,11 +9428,11 @@ msgstr "Update webhook key" msgid "Updating" msgstr "Updating" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "Upload a .zip file" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." @@ -9460,21 +9505,21 @@ msgid "User Interface settings" msgstr "User Interface settings" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "User Type" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "User analytics" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "User and Insights analytics" @@ -9504,27 +9549,27 @@ msgstr "User tokens" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "Username / password" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9534,30 +9579,30 @@ msgstr "" msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "Variables" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "Variables Prompted" @@ -9569,7 +9614,7 @@ msgstr "Vault password" msgid "Vault password | {credId}" msgstr "Vault password | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "Verbose" @@ -9583,11 +9628,11 @@ msgstr "Verbose" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "Verbosity" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "Version" @@ -9839,7 +9884,7 @@ msgid "View smart inventory host details" msgstr "View smart inventory host details" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "" @@ -9853,13 +9898,13 @@ msgstr "Visualizer" msgid "WARNING:" msgstr "WARNING:" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "Waiting" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "Warning" @@ -9867,16 +9912,16 @@ msgstr "Warning" msgid "Warning: Unsaved Changes" msgstr "Warning: Unsaved Changes" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "We were unable to locate licenses associated with this account." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "We were unable to locate subscriptions associated with this account." #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "Webhook" @@ -9916,8 +9961,8 @@ msgstr "Webhook Service" msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "Webhook details" @@ -9958,7 +10003,7 @@ msgstr "Weekend day" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -10015,15 +10060,15 @@ msgid "Workflow Approval not found." msgstr "Workflow Approval not found." #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "Workflow Approvals" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -10055,7 +10100,7 @@ msgstr "Workflow Job Templates" msgid "Workflow Link" msgstr "Workflow Link" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "Workflow Template" @@ -10117,7 +10162,7 @@ msgstr "Workflow timed out message" msgid "Workflow timed out message body" msgstr "Workflow timed out message body" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "Write" @@ -10141,11 +10186,11 @@ msgstr "You are unable to act on the following workflow approvals: {itemsUnableT msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "You do not have permission to delete the following Groups: {itemsUnableToDelete}" @@ -10157,7 +10202,7 @@ msgstr "You do not have permission to delete the following Groups: {itemsUnableT msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." @@ -10201,12 +10246,12 @@ msgstr "Zoom In" msgid "Zoom Out" msgstr "Zoom Out" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "a new webhook key will be generated on save." -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "a new webhook url will be generated on save." @@ -10240,7 +10285,7 @@ msgid "brand logo" msgstr "brand logo" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "" @@ -10253,12 +10298,12 @@ msgid "command" msgstr "command" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "confirm disassociate" @@ -10300,16 +10345,16 @@ msgstr "disassociate" msgid "documentation" msgstr "documentation" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "edit" @@ -10498,8 +10543,8 @@ msgstr "select verbosity" msgid "social login" msgstr "social login" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "source control branch" @@ -10543,11 +10588,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:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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}}" @@ -10555,31 +10600,31 @@ msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" @@ -10587,15 +10632,15 @@ msgstr "{0, plural, one {This inventory source is currently being used by other #~ msgid "{0, plural, 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?}}" #~ msgstr "{0, plural, 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?}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "{0, 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?}}" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" @@ -10711,8 +10756,12 @@ msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" #~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" #~ msgstr "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "{number} since {dateStr}" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" diff --git a/awx/ui_next/src/locales/es/messages.po b/awx/ui_next/src/locales/es/messages.po index 43f1c73b54..66754fd401 100644 --- a/awx/ui_next/src/locales/es/messages.po +++ b/awx/ui_next/src/locales/es/messages.po @@ -46,7 +46,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "" @@ -83,7 +83,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "" @@ -94,7 +94,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "" @@ -105,7 +105,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "" @@ -124,7 +124,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -150,7 +150,7 @@ msgid "About" msgstr "" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -169,7 +169,7 @@ msgid "Access" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" @@ -186,51 +186,51 @@ msgstr "" msgid "Action" msgstr "" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "" @@ -249,7 +249,7 @@ msgid "Activity" msgstr "" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "Activity Stream settings" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "" @@ -268,10 +268,6 @@ msgstr "" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" @@ -308,7 +304,7 @@ msgstr "" msgid "Add a new node between these two nodes" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "" @@ -320,15 +316,15 @@ msgstr "" msgid "Add existing host" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "" @@ -340,23 +336,23 @@ msgstr "" msgid "Add new host" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "" @@ -365,12 +361,12 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "" @@ -417,13 +413,17 @@ msgstr "" msgid "All" msgstr "" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "" @@ -432,7 +432,7 @@ msgstr "" msgid "Allow Provisioning Callbacks" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -442,7 +442,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "" @@ -503,10 +503,10 @@ msgstr "" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "" @@ -533,17 +533,17 @@ msgstr "" msgid "Application not found." msgstr "" -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "" @@ -623,7 +623,7 @@ msgstr "" msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" @@ -632,16 +632,17 @@ msgstr "" msgid "Arguments" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "" @@ -649,7 +650,7 @@ msgstr "" msgid "Association modal" msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" @@ -662,12 +663,12 @@ msgid "Authentication" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" @@ -687,7 +688,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -748,7 +749,7 @@ msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -832,7 +833,7 @@ msgstr "" msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -840,7 +841,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -851,7 +852,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "" @@ -875,38 +876,38 @@ msgstr "" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "" @@ -915,8 +916,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "" @@ -929,8 +930,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "" @@ -942,7 +943,7 @@ msgstr "" msgid "Cancel link removal" msgstr "" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "" @@ -980,12 +981,12 @@ msgstr "" #~ msgstr "" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1002,7 +1003,7 @@ msgstr "" #~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #~ msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "" @@ -1051,7 +1052,7 @@ msgid "Channel" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "" @@ -1067,7 +1068,7 @@ msgstr "" msgid "Choose a .json file" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "" @@ -1075,7 +1076,7 @@ msgstr "" msgid "Choose a Playbook Directory" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "" @@ -1084,7 +1085,7 @@ msgid "Choose a Webhook Service" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "" @@ -1092,7 +1093,7 @@ msgstr "" msgid "Choose a module" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "" @@ -1136,20 +1137,20 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1161,7 +1162,7 @@ msgstr "" msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" @@ -1195,7 +1196,7 @@ msgid "Client secret" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "" @@ -1204,7 +1205,7 @@ msgstr "" msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1216,7 +1217,7 @@ msgstr "" msgid "Collapse" msgstr "" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1239,11 +1240,11 @@ msgstr "" #~ msgid "Completed jobs" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "" @@ -1257,11 +1258,11 @@ msgstr "" msgid "Confirm Delete" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "" @@ -1277,7 +1278,7 @@ msgstr "" msgid "Confirm delete" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "" @@ -1297,7 +1298,7 @@ msgstr "" msgid "Confirm revert all" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1340,7 +1341,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1409,8 +1410,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "" @@ -1537,25 +1538,25 @@ msgstr "" msgid "Create user token" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1577,38 +1578,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1616,26 +1618,26 @@ msgid "Created By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "" @@ -1644,20 +1646,20 @@ msgstr "" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1675,11 +1677,11 @@ msgstr "" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1690,21 +1692,21 @@ msgstr "" #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "" @@ -1717,7 +1719,7 @@ msgstr "" msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "" @@ -1737,8 +1739,8 @@ msgstr "" msgid "Customize messages…" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "" @@ -1748,11 +1750,11 @@ msgid "DELETED" msgstr "" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "" @@ -1771,11 +1773,11 @@ msgstr "" msgid "Days of Data to Keep" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1789,7 +1791,7 @@ msgid "Default" msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1818,32 +1820,32 @@ msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1870,22 +1872,22 @@ msgstr "" #~ msgid "Delete Groups?" #~ msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "" @@ -1901,15 +1903,15 @@ msgstr "" msgid "Delete Project" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" @@ -1929,7 +1931,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "" @@ -1942,20 +1944,20 @@ msgstr "" msgid "Delete application" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "" @@ -1964,11 +1966,11 @@ msgstr "" msgid "Delete on Update" msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1998,16 +2000,16 @@ msgstr "" msgid "Deleted" msgstr "" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "" @@ -2032,75 +2034,76 @@ msgstr "" msgid "Deny" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "" @@ -2239,13 +2242,13 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "" @@ -2261,17 +2264,17 @@ msgstr "" msgid "Disassociate related group(s)?" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "" @@ -2279,7 +2282,7 @@ msgstr "" msgid "Disassociate?" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2294,8 +2297,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2306,7 +2309,7 @@ msgstr "" msgid "Download Output" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "" @@ -2331,7 +2334,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2341,23 +2344,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2384,17 +2387,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2589,9 +2592,9 @@ msgid "Elapsed time that the job ran" msgstr "" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "" @@ -2602,11 +2605,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "" @@ -2619,14 +2622,14 @@ msgstr "" msgid "Enable Privilege Escalation" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2651,7 +2654,7 @@ msgstr "" msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "" @@ -2678,7 +2681,7 @@ msgstr "" #~ "template." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2761,7 +2764,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" @@ -2828,11 +2831,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" @@ -2868,16 +2871,16 @@ msgstr "" #~ msgid "Environment" #~ msgstr "" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "" @@ -2902,91 +2905,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "" @@ -3002,7 +3006,7 @@ msgstr "" msgid "Event summary not available" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "" @@ -3026,7 +3030,7 @@ msgstr "" msgid "Examples include:" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -3044,8 +3048,8 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3053,11 +3057,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3098,8 +3102,8 @@ msgstr "" msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -3113,8 +3117,8 @@ msgstr "" msgid "Expiration" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3123,11 +3127,11 @@ msgstr "" msgid "Expires" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -3141,7 +3145,7 @@ msgstr "" msgid "Explanation" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "" @@ -3158,15 +3162,15 @@ msgid "FINISHED:" msgstr "" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3183,11 +3187,15 @@ msgid "Failed Hosts" msgstr "" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "" @@ -3199,16 +3207,17 @@ msgstr "" msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "" @@ -3225,12 +3234,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "" -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3264,24 +3273,24 @@ msgstr "" msgid "Failed to delete credential." msgstr "" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "" @@ -3289,19 +3298,19 @@ msgstr "" msgid "Failed to delete notification." msgstr "" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3309,20 +3318,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "" -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: screens/Inventory/InventoryList/InventoryList.jsx:265 msgid "Failed to delete one or more inventories." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "" @@ -3330,31 +3339,31 @@ msgstr "" msgid "Failed to delete one or more job templates." msgstr "" -#: components/JobList/JobList.jsx:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "" -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "" -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "" @@ -3366,11 +3375,11 @@ msgstr "" msgid "Failed to delete one or more user tokens." msgstr "" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "" @@ -3386,16 +3395,16 @@ msgstr "" msgid "Failed to delete role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "" @@ -3411,7 +3420,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "" @@ -3420,7 +3429,7 @@ msgstr "" msgid "Failed to delete {name}." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "" @@ -3429,7 +3438,7 @@ msgid "Failed to deny workflow approval." msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" @@ -3442,7 +3451,7 @@ msgstr "" msgid "Failed to disassociate one or more instances." msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "" @@ -3480,7 +3489,7 @@ msgstr "" msgid "Failed to sync project." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "" @@ -3523,7 +3532,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "" @@ -3539,7 +3548,7 @@ msgstr "" msgid "Field ends with value." msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" @@ -3555,7 +3564,7 @@ msgstr "" msgid "Fifth" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3567,7 +3576,7 @@ msgstr "" msgid "File, directory or script" msgstr "" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "" @@ -3585,11 +3594,11 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "" @@ -3614,7 +3623,7 @@ msgstr "" msgid "Float" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3642,7 +3651,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "" @@ -3669,30 +3678,30 @@ msgid "Friday" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3741,7 +3750,7 @@ msgstr "" msgid "GitLab" msgstr "" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3750,7 +3759,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3783,7 +3792,7 @@ msgid "Google OAuth2" msgstr "" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "" @@ -3812,7 +3821,7 @@ msgstr "" msgid "Group details" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "" @@ -3823,7 +3832,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3854,7 +3863,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "" @@ -3863,17 +3872,17 @@ msgstr "" msgid "Host" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "" @@ -3885,11 +3894,11 @@ msgstr "" msgid "Host Details" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3902,27 +3911,27 @@ msgstr "" msgid "Host Name" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3944,10 +3953,10 @@ msgid "Host status information for this job is unavailable." msgstr "" #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3956,8 +3965,8 @@ msgstr "" #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3965,18 +3974,26 @@ msgstr "" msgid "Hosts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3986,9 +4003,9 @@ msgstr "" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "" @@ -4009,7 +4026,7 @@ msgid "ID of the panel (optional)" msgstr "" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "" @@ -4090,7 +4107,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4107,7 +4124,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4122,7 +4139,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4132,11 +4149,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4147,11 +4164,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4169,11 +4186,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4183,7 +4200,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4206,17 +4223,17 @@ msgstr "" msgid "Initiated By" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "" @@ -4234,8 +4251,8 @@ msgstr "" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "" @@ -4248,12 +4265,12 @@ msgstr "" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4277,14 +4294,14 @@ msgstr "" msgid "Instance Group" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4311,7 +4328,7 @@ msgid "Instance groups" msgstr "" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4327,7 +4344,7 @@ msgstr "" msgid "Invalid email address" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4341,11 +4358,11 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4356,15 +4373,15 @@ msgstr "" msgid "Inventories with sources cannot be copied" msgstr "" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4374,7 +4391,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4412,14 +4429,14 @@ msgstr "" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4432,7 +4449,7 @@ msgid "Inventory Update" msgstr "" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "" @@ -4440,11 +4457,11 @@ msgstr "" msgid "Inventory not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "" @@ -4454,15 +4471,15 @@ msgstr "" #~ msgid "Isolated" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4497,22 +4514,22 @@ msgstr "" msgid "January" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "" @@ -4522,7 +4539,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "" @@ -4537,12 +4554,12 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4572,7 +4589,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4580,15 +4597,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "" @@ -4598,10 +4615,10 @@ msgstr "" msgid "Job templates" msgstr "" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4648,7 +4665,7 @@ msgstr "" msgid "Key typeahead" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "" @@ -4705,7 +4722,7 @@ msgstr "" msgid "LDAP5" msgstr "" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "" @@ -4716,8 +4733,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "" @@ -4738,15 +4755,15 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4763,15 +4780,15 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "" @@ -4788,8 +4805,8 @@ msgstr "" msgid "Last job run" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4808,10 +4825,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "" @@ -4850,7 +4867,7 @@ msgstr "" msgid "Launched By" msgstr "" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "" @@ -4862,11 +4879,11 @@ msgstr "" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4894,7 +4911,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4903,8 +4920,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "" @@ -4947,7 +4964,7 @@ msgid "Logout" msgstr "" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "" @@ -4984,12 +5001,12 @@ msgstr "" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5018,13 +5035,13 @@ msgstr "" msgid "Management jobs" msgstr "" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5035,12 +5052,12 @@ msgid "March" msgstr "" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "" @@ -5056,12 +5073,12 @@ msgstr "" msgid "May" msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "" @@ -5141,38 +5158,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5180,7 +5198,7 @@ msgid "Modified By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" @@ -5241,50 +5259,50 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5305,42 +5323,42 @@ msgstr "" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5348,62 +5366,63 @@ msgstr "" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5415,19 +5434,19 @@ msgstr "" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "" @@ -5451,7 +5470,7 @@ msgstr "" msgid "Never expires" msgstr "" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" @@ -5460,14 +5479,14 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5477,12 +5496,12 @@ msgstr "" msgid "No" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5520,17 +5539,17 @@ msgstr "" msgid "No results found" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5556,7 +5575,7 @@ msgstr "" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "" @@ -5585,7 +5604,7 @@ msgstr "" #~ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5640,9 +5659,9 @@ msgstr "" msgid "Notification Template not found." msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5657,16 +5676,16 @@ msgstr "" msgid "Notification color" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "" @@ -5691,7 +5710,7 @@ msgid "November" msgstr "" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" @@ -5719,7 +5738,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "" @@ -5737,7 +5756,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "" @@ -5771,12 +5790,12 @@ msgstr "" msgid "OpenStack" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5800,21 +5819,21 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5825,14 +5844,14 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5842,13 +5861,13 @@ msgstr "" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" @@ -5857,7 +5876,7 @@ msgstr "" msgid "Organization (Name)" msgstr "" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "" @@ -5867,9 +5886,9 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5884,7 +5903,7 @@ msgstr "" msgid "Other prompts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5917,7 +5936,7 @@ msgid "PUT" msgstr "" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "" @@ -5961,7 +5980,7 @@ msgstr "" #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5969,7 +5988,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "" @@ -5979,26 +5998,30 @@ msgstr "" #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" @@ -6027,14 +6050,14 @@ msgstr "" msgid "Play Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "" @@ -6042,7 +6065,7 @@ msgstr "" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -6052,25 +6075,25 @@ msgstr "" msgid "Playbook Directory" msgstr "" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "" @@ -6078,12 +6101,12 @@ msgstr "" msgid "Plays" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -6099,7 +6122,7 @@ msgstr "" msgid "Please enter a valid URL" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "" @@ -6111,10 +6134,14 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:748 +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "" + #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." msgstr "" @@ -6123,7 +6150,7 @@ msgstr "" msgid "Please select an organization before editing the host filter" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "" @@ -6189,8 +6216,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "" @@ -6198,7 +6225,7 @@ msgstr "" msgid "Private key passphrase" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "" @@ -6207,9 +6234,9 @@ msgid "Privilege escalation password" msgstr "" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6247,16 +6274,16 @@ msgstr "" msgid "Project not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6278,7 +6305,7 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6298,8 +6325,8 @@ msgstr "" #~ msgid "Prompts" #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6335,7 +6362,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6347,7 +6374,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6357,21 +6384,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6391,23 +6418,23 @@ msgstr "" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "" @@ -6419,10 +6446,10 @@ msgstr "" msgid "Recipient list" msgstr "" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" @@ -6435,7 +6462,7 @@ msgstr "" msgid "Red Hat Virtualization" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6443,7 +6470,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "" @@ -6463,7 +6490,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6478,7 +6505,7 @@ msgid "Refresh Token" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" @@ -6486,7 +6513,7 @@ msgstr "" msgid "Regions" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6502,8 +6529,8 @@ msgstr "" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "" @@ -6531,10 +6558,10 @@ msgstr "" msgid "Relaunch using host parameters" msgstr "" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6557,7 +6584,7 @@ msgstr "" msgid "Remove Node" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" @@ -6585,8 +6612,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6596,7 +6623,7 @@ msgid "Required" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6617,7 +6644,7 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "" @@ -6644,12 +6671,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6693,7 +6720,7 @@ msgid "Revert to factory default." msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "" @@ -6703,17 +6730,17 @@ msgid "Revision #" msgstr "" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "" @@ -6734,7 +6761,7 @@ msgstr "" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "" @@ -6765,17 +6792,17 @@ msgstr "" msgid "Run type" msgstr "" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "" @@ -6792,7 +6819,7 @@ msgstr "" msgid "SAML settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "" @@ -6838,9 +6865,9 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6888,9 +6915,9 @@ msgstr "" msgid "Schedule is missing rrule" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6910,7 +6937,7 @@ msgstr "" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "" @@ -6931,11 +6958,11 @@ msgid "Scroll previous" msgstr "" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6964,18 +6991,18 @@ msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" @@ -7008,7 +7035,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "" @@ -7024,7 +7051,7 @@ msgstr "" msgid "Select a Resource Type" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7038,11 +7065,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "" @@ -7067,7 +7094,7 @@ msgstr "" msgid "Select a playbook" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -7076,7 +7103,7 @@ msgid "Select a row to approve" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "" @@ -7088,7 +7115,7 @@ msgstr "" msgid "Select a row to disassociate" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -7096,7 +7123,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7105,29 +7132,29 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "" @@ -7135,12 +7162,12 @@ msgstr "" msgid "Select a webhook service." msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -7148,15 +7175,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7189,31 +7216,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -7226,17 +7258,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "" @@ -7248,7 +7280,7 @@ msgstr "" #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7260,12 +7292,12 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7276,7 +7308,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7287,16 +7319,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "" -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7306,11 +7338,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "" @@ -7318,12 +7350,12 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7336,7 +7368,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7344,8 +7376,8 @@ msgstr "" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "" @@ -7369,7 +7401,7 @@ msgstr "" msgid "Service account JSON file" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" @@ -7382,7 +7414,7 @@ msgstr "" msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7390,7 +7422,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" @@ -7424,8 +7456,8 @@ msgstr "" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" @@ -7439,11 +7471,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "" @@ -7461,7 +7493,7 @@ msgstr "" msgid "Show less" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "" @@ -7517,7 +7549,7 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "" @@ -7530,7 +7562,7 @@ msgstr "" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7557,7 +7589,7 @@ msgid "Skipped" msgstr "" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "" @@ -7604,7 +7636,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7619,7 +7651,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "" @@ -7629,11 +7661,11 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "" @@ -7648,18 +7680,18 @@ msgstr "" msgid "Source Control Type" msgstr "" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7679,11 +7711,11 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "" @@ -7731,7 +7763,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "" -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" @@ -7762,7 +7794,7 @@ msgstr "" msgid "Start" msgstr "" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "" @@ -7790,31 +7822,31 @@ msgid "Start sync source" msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7824,7 +7856,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7836,12 +7868,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7849,11 +7881,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7861,18 +7893,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -7893,12 +7925,16 @@ msgstr "" msgid "Success message body" msgstr "" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "" @@ -7912,14 +7948,14 @@ msgstr "" msgid "Sunday" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "" @@ -7952,16 +7988,16 @@ msgstr "" msgid "Sync Project" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "" @@ -7974,26 +8010,26 @@ msgstr "" msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "" @@ -8005,7 +8041,7 @@ msgstr "" msgid "TACACS+ settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" @@ -8019,7 +8055,7 @@ msgstr "" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8066,7 +8102,7 @@ msgstr "" msgid "Task Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -8079,7 +8115,7 @@ msgid "Team" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "" @@ -8090,19 +8126,19 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8117,10 +8153,10 @@ msgstr "" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8129,9 +8165,9 @@ msgstr "" msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "" @@ -8169,15 +8205,19 @@ msgstr "" msgid "Textarea" msgstr "" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" @@ -8192,7 +8232,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8214,11 +8254,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -8233,11 +8273,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8248,7 +8288,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8294,7 +8334,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "" @@ -8364,17 +8404,21 @@ msgstr "" msgid "Third" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "" @@ -8382,7 +8426,7 @@ msgstr "" msgid "This action will disassociate the following:" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8390,7 +8434,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8408,7 +8452,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8422,7 +8466,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8452,7 +8496,7 @@ msgstr "" msgid "This field must be a number" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" @@ -8469,7 +8513,7 @@ msgstr "" msgid "This field must be an integer" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "" @@ -8481,9 +8525,10 @@ msgstr "" msgid "This field must be greater than 0" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8493,7 +8538,7 @@ msgstr "" msgid "This field must not contain spaces" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "" @@ -8513,11 +8558,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8529,7 +8574,7 @@ msgstr "" msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8546,14 +8591,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "" +#~ msgid "This project needs to be updated" +#~ msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "" @@ -8562,7 +8607,7 @@ msgstr "" msgid "This step contains errors" msgstr "" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" @@ -8580,7 +8625,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8593,14 +8638,14 @@ msgstr "" msgid "Thursday" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8636,7 +8681,7 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "" @@ -8735,11 +8780,11 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "" @@ -8753,7 +8798,7 @@ msgstr "" msgid "Total jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8762,8 +8807,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8773,7 +8818,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "" @@ -8787,59 +8832,59 @@ msgid "Tuesday" msgstr "" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "" @@ -8858,7 +8903,7 @@ msgstr "" msgid "Undo" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8885,7 +8930,7 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "" @@ -8923,11 +8968,11 @@ msgstr "" msgid "Updating" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8989,21 +9034,21 @@ msgid "User Interface settings" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -9033,27 +9078,27 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9063,30 +9108,30 @@ msgstr "" msgid "VMware vCenter" msgstr "" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -9098,7 +9143,7 @@ msgstr "" msgid "Vault password | {credId}" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -9112,11 +9157,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9368,7 +9413,7 @@ msgid "View smart inventory host details" msgstr "" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "" @@ -9382,13 +9427,13 @@ msgstr "" msgid "WARNING:" msgstr "" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "" @@ -9396,16 +9441,16 @@ msgstr "" msgid "Warning: Unsaved Changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "" @@ -9445,8 +9490,8 @@ msgstr "" msgid "Webhook URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "" @@ -9487,7 +9532,7 @@ msgstr "" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9536,15 +9581,15 @@ msgid "Workflow Approval not found." msgstr "" #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9576,7 +9621,7 @@ msgstr "" msgid "Workflow Link" msgstr "" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" @@ -9638,7 +9683,7 @@ msgstr "" msgid "Workflow timed out message body" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "" @@ -9662,11 +9707,11 @@ msgstr "" msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" @@ -9674,7 +9719,7 @@ msgstr "" msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" @@ -9712,12 +9757,12 @@ msgstr "" msgid "Zoom Out" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "" @@ -9743,7 +9788,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "" @@ -9756,12 +9801,12 @@ msgid "command" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "" @@ -9791,16 +9836,16 @@ msgstr "" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "" @@ -9969,8 +10014,8 @@ msgstr "" msgid "social login" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -10014,11 +10059,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -10026,31 +10071,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -10058,15 +10103,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -10170,8 +10215,12 @@ msgstr "" #~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" #~ msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/fr/messages.po b/awx/ui_next/src/locales/fr/messages.po index 0c6cc24200..c703c7b861 100644 --- a/awx/ui_next/src/locales/fr/messages.po +++ b/awx/ui_next/src/locales/fr/messages.po @@ -45,7 +45,7 @@ msgstr "/ (project root)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "0 (Normal)" @@ -66,7 +66,7 @@ msgstr "1 (info)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "1 (Verbeux)" @@ -82,7 +82,7 @@ msgstr "2 (Déboguer)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "2 (Verbeux +)" @@ -93,7 +93,7 @@ msgstr "2 (Verbeux +)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "3 (Déboguer)" @@ -104,7 +104,7 @@ msgstr "3 (Déboguer)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "4 (Débogage de la connexion)" @@ -123,7 +123,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "Refspec à récupérer (passé au module git Ansible). Ce paramètre permet d'accéder aux références via le champ de branche non disponible par ailleurs." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -149,7 +149,7 @@ msgid "About" msgstr "À propos de " #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -168,7 +168,7 @@ msgid "Access" msgstr "Accès" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "Expiration du jeton d'accès" @@ -185,51 +185,51 @@ msgstr "Token de compte" msgid "Action" msgstr "Action" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "Actions" @@ -248,7 +248,7 @@ msgid "Activity" msgstr "Activité" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "Flux d’activité" @@ -257,7 +257,7 @@ msgstr "Flux d’activité" msgid "Activity Stream settings" msgstr "Flux d’activité" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "Sélecteur de type de flux d'activité" @@ -267,10 +267,6 @@ msgstr "Acteur" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "Ajouter" @@ -307,7 +303,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:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "Ajouter un groupe de conteneurs" @@ -319,15 +315,15 @@ msgstr "Ajouter un groupe existant" msgid "Add existing host" msgstr "Ajouter une hôte existant" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "Ajouter un groupe d'instances" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "Ajouter un inventaire" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "Ajouter un modèle de job" @@ -339,23 +335,23 @@ msgstr "Ajouter un nouveau groupe" msgid "Add new host" msgstr "Ajouter un nouvel hôte" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "Ajouter un type de ressource" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "Ajouter un inventaire smart" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "Ajouter les permissions de l'équipe" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "Ajouter les permissions de l’utilisateur" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "Ajouter un modèle de flux de travail" @@ -364,12 +360,12 @@ msgstr "Ajouter un modèle de flux de travail" #~ msgstr "Administration" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "Administration" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "Avancé" @@ -416,13 +412,17 @@ msgstr "Modal d'alerte" msgid "All" msgstr "Tous" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "Tous les types de tâche" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "Autoriser le remplacement de la branche" @@ -431,7 +431,7 @@ msgstr "Autoriser le remplacement de la branche" msgid "Allow Provisioning Callbacks" msgstr "Autoriser les rappels d’exécution" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -441,7 +441,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "Liste des URI autorisés, séparés par des espaces" @@ -502,10 +502,10 @@ msgstr "Nom de variable de réponse" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "Application" @@ -532,17 +532,17 @@ msgstr "Nom de l'application" msgid "Application not found." msgstr "Application non trouvée." -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "Applications" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "Applications & Jetons" @@ -622,7 +622,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer {0} l’accès à {1}? Cela risque msgid "Are you sure you want to remove {0} access from {username}?" msgstr "Êtes-vous sûr de vouloir supprimer {0} l’accès de {1} ?" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Voulez-vous vraiment demander l'annulation de ce job ?" @@ -631,16 +631,17 @@ msgstr "Voulez-vous vraiment demander l'annulation de ce job ?" msgid "Arguments" msgstr "Arguments" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "Artefacts" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "Associé" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "Erreur de rôle d’associé" @@ -648,7 +649,7 @@ msgstr "Erreur de rôle d’associé" msgid "Association modal" msgstr "Association modale" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "Au moins une valeur doit être sélectionnée pour ce champ." @@ -661,12 +662,12 @@ msgid "Authentication" msgstr "Authentification" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "Expiration du code d'autorisation" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "Type d'autorisation" @@ -686,7 +687,7 @@ msgstr "Paramètres AD Azure" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -747,7 +748,7 @@ msgstr "Retour aux horaires" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -831,7 +832,7 @@ msgstr "" msgid "Brand Image" msgstr "Brand Image" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -839,7 +840,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -850,7 +851,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "Expiration Délai d’attente du cache" @@ -874,38 +875,38 @@ msgstr "Expiration du délai d’attente du cache (secondes)" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "Annuler" @@ -914,8 +915,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "Annuler Job" @@ -928,8 +929,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "Annuler le job" @@ -941,7 +942,7 @@ msgstr "Annuler les changements de liens" msgid "Cancel link removal" msgstr "Annuler la suppression d'un lien" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "Annuler la recherche" @@ -979,12 +980,12 @@ msgstr "" #~ msgstr "Annuler la source de synchronisation" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1001,7 +1002,7 @@ msgstr "" #~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #~ msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "Capacité" @@ -1050,7 +1051,7 @@ msgid "Channel" msgstr "Canal" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "Vérifier" @@ -1066,7 +1067,7 @@ msgstr "Vérifiez si la valeur du champ donné est présente dans la liste fourn msgid "Choose a .json file" msgstr "Choisissez un fichier .json" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "Choisissez un type de notification" @@ -1074,7 +1075,7 @@ msgstr "Choisissez un type de notification" msgid "Choose a Playbook Directory" msgstr "Choisissez un répertoire Playbook" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "Choisissez un type de contrôle à la source" @@ -1083,7 +1084,7 @@ msgid "Choose a Webhook Service" msgstr "Choisir un service de webhook" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "Choisir un type de job" @@ -1091,7 +1092,7 @@ msgstr "Choisir un type de job" msgid "Choose a module" msgstr "Choisissez un module" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "Choisissez une source" @@ -1135,20 +1136,20 @@ msgstr "Choisissez le type de ressource qui recevra de nouveaux rôles. Par exe #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "Nettoyer" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "Effacer tous les filtres" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1160,7 +1161,7 @@ msgstr "Cliquez sur un nœud disponible pour créer un nouveau lien. Cliquez en msgid "Click the Edit button below to reconfigure the node." msgstr "Cliquez sur le bouton Modifier ci-dessous pour reconfigurer le nœud." -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "Cliquez sur ce bouton pour vérifier la connexion au système de gestion du secret en utilisant le justificatif d'identité sélectionné et les entrées spécifiées." @@ -1194,7 +1195,7 @@ msgid "Client secret" msgstr "Question secrète du client" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "Type de client" @@ -1203,7 +1204,7 @@ msgstr "Type de client" msgid "Close" msgstr "Fermer" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1215,7 +1216,7 @@ msgstr "Cloud" msgid "Collapse" msgstr "Effondrement" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1238,11 +1239,11 @@ msgstr "Commande" #~ msgid "Completed jobs" #~ msgstr "Jobs terminés" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "Jobs parallèles" @@ -1256,11 +1257,11 @@ msgstr "" msgid "Confirm Delete" msgstr "Confirmer Effacer" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "Confirmer le mot de passe" @@ -1276,7 +1277,7 @@ msgstr "" msgid "Confirm delete" msgstr "Confirmer la suppression" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "Confirmer dissocier" @@ -1296,7 +1297,7 @@ msgstr "Confirmer la suppression de tous les nœuds" msgid "Confirm revert all" msgstr "Confirmer annuler tout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1339,7 +1340,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1408,8 +1409,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "Créer" @@ -1536,25 +1537,25 @@ msgstr "Créer une nouvelle source" msgid "Create user token" msgstr "Créer un jeton d'utilisateur" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1576,38 +1577,39 @@ msgstr "Créé" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1615,26 +1617,26 @@ msgid "Created By (Username)" msgstr "Créé par (Nom d'utilisateur)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "Créé par (nom d'utilisateur)" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "Information d’identification" @@ -1643,20 +1645,20 @@ msgstr "Information d’identification" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "Nom d’identification" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "Type d'informations d’identification" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1674,11 +1676,11 @@ msgstr "Mots de passes d’identification" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "Informations d’identification pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \"Kubernetes/OpenShift API Bearer Token\"." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1689,21 +1691,21 @@ msgstr "Type d'informations d’identification non trouvé." #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "Informations d’identification" @@ -1716,7 +1718,7 @@ msgstr "" msgid "Current page" msgstr "Page actuelle" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "Spécifications des pods personnalisés" @@ -1736,8 +1738,8 @@ msgstr "" msgid "Customize messages…" msgstr "Personnaliser les messages..." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "Personnaliser les spécifications du pod" @@ -1747,11 +1749,11 @@ msgid "DELETED" msgstr "SUPPRIMÉ" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "Tableau de bord" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "Tableau de bord (toutes les activités)" @@ -1770,11 +1772,11 @@ msgstr "Jour" msgid "Days of Data to Keep" msgstr "Nombre de jours pendant lesquels on peut conserver les données" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1788,7 +1790,7 @@ msgid "Default" msgstr "Par défaut" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1817,32 +1819,32 @@ msgstr "Définir les fonctions et fonctionnalités niveau système" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1869,22 +1871,22 @@ msgstr "" #~ msgid "Delete Groups?" #~ msgstr "Supprimer les groupes" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "Supprimer l'hôte" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "Supprimer l’inventaire" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "Supprimer Job" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "Modèle de découpage de Job" @@ -1900,15 +1902,15 @@ msgstr "Supprimer l'organisation" msgid "Delete Project" msgstr "Suppression du projet" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "Supprimer les questions" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "Supprimer la programmation" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "Supprimer le questionnaire" @@ -1928,7 +1930,7 @@ msgstr "Supprimer un jeton d'utilisateur" msgid "Delete Workflow Approval" msgstr "Supprimer l'approbation du flux de travail" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "Supprimer le modèle de flux de travail " @@ -1941,20 +1943,20 @@ msgstr "Supprimer tous les nœuds" msgid "Delete application" msgstr "Supprimer l’application" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "Supprimer le type d'informations d’identification" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "Supprimer l'erreur" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "Supprimer un groupe d'instances" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "Supprimer la source de l'inventaire" @@ -1963,11 +1965,11 @@ msgstr "Supprimer la source de l'inventaire" msgid "Delete on Update" msgstr "Supprimer lors de la mise à jour" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "Supprimer l'inventaire smart" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1997,16 +1999,16 @@ msgstr "Supprimer {pluralizedItemName} ?" msgid "Deleted" msgstr "Supprimé" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "Erreur de suppression" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "Erreur de suppression" @@ -2031,75 +2033,76 @@ msgstr "Refusé par {0} - {1}" msgid "Deny" msgstr "Refuser" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "Description" @@ -2238,13 +2241,13 @@ msgstr "Désactiver la vérification SSL" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "Dissocier" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "Dissocier le groupe de l'hôte ?" @@ -2260,17 +2263,17 @@ msgstr "Dissocier l'instance du groupe d'instances ?" msgid "Disassociate related group(s)?" msgstr "Dissocier le(s) groupe(s) lié(s) ?" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "Dissocier la ou les équipes liées ?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "Dissocier le rôle" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "Dissocier le rôle !" @@ -2278,7 +2281,7 @@ msgstr "Dissocier le rôle !" msgid "Disassociate?" msgstr "Dissocier ?" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2293,8 +2296,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2305,7 +2308,7 @@ msgstr "" msgid "Download Output" msgstr "Télécharger la sortie" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "E-mail" @@ -2330,7 +2333,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "Chaque fois qu’une tâche s’exécute avec cet inventaire, réalisez une mise à jour de la source sélectionnée avant de lancer le job." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2340,23 +2343,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise à jour du projet avant de démarrer le job." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2383,17 +2386,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2588,9 +2591,9 @@ msgid "Elapsed time that the job ran" msgstr "Temps écoulé (en secondes) pendant lequel la tâche s'est exécutée." #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "Email" @@ -2601,11 +2604,11 @@ msgstr "Options d'email" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "Activer les tâches parallèles" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "Utiliser le cache des faits" @@ -2618,14 +2621,14 @@ msgstr "Activer/désactiver la vérification de certificat HTTPS" msgid "Enable Privilege Escalation" msgstr "Activer l’élévation des privilèges" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "Activer le webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "Activez le webhook pour ce modèle de flux de travail." @@ -2650,7 +2653,7 @@ msgstr "Activer l’élévation des privilèges" msgid "Enable simplified login for your {brandName} applications" msgstr "Activer la connexion simplifiée pour vos applications Tower" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "Activez le webhook pour ce modèle de tâche." @@ -2669,7 +2672,7 @@ msgstr "Valeur activée" msgid "Enabled Variable" msgstr "Variable activée" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2756,7 +2759,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe." @@ -2823,11 +2826,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire dans la documentation et dans le guide de configuration du Plugin de <1>Tower" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Entrez des variables pour configurer la source de l'inventaire. Pour une description détaillée de la configuration de ce plugin, voir les <0>Plugins d’inventaire dans la documentation et dans le guide de configuration du Plugin d’ <1>aws_ec2" @@ -2863,16 +2866,16 @@ msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Utilisez le bouton ra #~ msgid "Environment" #~ msgstr "Environnement" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "Erreur" @@ -2897,91 +2900,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "Erreur !" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "Événement" @@ -2997,7 +3001,7 @@ msgstr "Détail de l'événement modal" msgid "Event summary not available" msgstr "Récapitulatif de l’événement non disponible" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "Événements" @@ -3021,7 +3025,7 @@ msgstr "Exemples d’URL pour le SCM Subversion :" msgid "Examples include:" msgstr "Voici quelques exemples :" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -3039,8 +3043,8 @@ msgstr "Exécuter lorsque le nœud parent se trouve dans un état de réussite." #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3048,11 +3052,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3093,8 +3097,8 @@ msgstr "Sortir sans sauvegarder" msgid "Expand" msgstr "Développer" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -3108,8 +3112,8 @@ msgstr "On s'attendait à ce qu'au moins un des éléments suivants soit présen msgid "Expiration" msgstr "Expiration" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3118,11 +3122,11 @@ msgstr "Expiration" msgid "Expires" msgstr "Expire" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -3136,7 +3140,7 @@ msgstr "Arrive à expiration le {0}" msgid "Explanation" msgstr "Explication" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "Système externe de gestion des secrets" @@ -3153,15 +3157,15 @@ msgid "FINISHED:" msgstr "TERMINÉ :" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "Faits" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3178,11 +3182,15 @@ msgid "Failed Hosts" msgstr "Échec Hôtes" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "Échec des hôtes" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "N'a pas approuvé un ou plusieurs flux de travail." @@ -3194,16 +3202,17 @@ msgstr "N'a pas approuvé le flux de travail." msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "N'a pas réussi à associer le rôle" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "N'a pas réussi à associer." @@ -3220,12 +3229,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "N'a pas réussi à annuler la synchronisation des sources d'inventaire." -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3259,24 +3268,24 @@ msgstr "N'a pas réussi à supprimer l’application" msgid "Failed to delete credential." msgstr "N'a pas réussi à supprimer l’identifiant." -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "Echec de la suppression du groupe {0}." -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "N'a pas réussi à supprimer l'hôte." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "Impossible de supprimer la source d'inventaire {0}." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "N'a pas réussi à supprimer l'inventaire." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "N'a pas réussi à supprimer le modèle de Job." @@ -3284,19 +3293,19 @@ msgstr "N'a pas réussi à supprimer le modèle de Job." msgid "Failed to delete notification." msgstr "N'a pas réussi à supprimer la notification." -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "N'a pas réussi à supprimer une ou plusieurs applications" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "N'a pas réussi à supprimer un ou plusieurs types d’identifiants." -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "N'a pas réussi à supprimer un ou plusieurs identifiants." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3304,20 +3313,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "N'a pas réussi à supprimer un ou plusieurs groupes." -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 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:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 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:268 +#: 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:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire." @@ -3325,31 +3334,31 @@ 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:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 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:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "N'a pas réussi à supprimer une ou plusieurs organisations." -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "N'a pas réussi à supprimer un ou plusieurs projets." -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "N'a pas réussi à supprimer une ou plusieurs progammations." -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "N'a pas réussi à supprimer une ou plusieurs équipes." -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "N'a pas réussi à supprimer un ou plusieurs modèles." @@ -3361,11 +3370,11 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs jetons." msgid "Failed to delete one or more user tokens." msgstr "N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur." -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "N'a pas réussi à supprimer un ou plusieurs utilisateurs." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail." @@ -3381,16 +3390,16 @@ msgstr "N'a pas réussi à supprimer le projet." msgid "Failed to delete role" msgstr "N'a pas réussi à supprimer le rôle" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "N'a pas réussi à supprimer le rôle." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "N'a pas réussi à supprimer la programmation." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "N'a pas réussi à supprimer l'inventaire smart." @@ -3406,7 +3415,7 @@ msgstr "Impossible de supprimer l'utilisateur." msgid "Failed to delete workflow approval." msgstr "N'a pas réussi à supprimer l'approbation du flux de travail." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "N'a pas réussi à supprimer le modèle de flux de travail." @@ -3415,7 +3424,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:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "N'a pas refusé d'approuver un ou plusieurs flux de travail." @@ -3424,7 +3433,7 @@ msgid "Failed to deny workflow approval." msgstr "N'a pas refusé l'approbation du flux de travail." #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "N'a pas réussi à dissocier un ou plusieurs groupes." @@ -3437,7 +3446,7 @@ msgstr "N'a pas réussi à dissocier un ou plusieurs hôtes." msgid "Failed to disassociate one or more instances." msgstr "N'a pas réussi à dissocier une ou plusieurs instances." -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "N'a pas réussi à dissocier une ou plusieurs équipes." @@ -3475,7 +3484,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:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 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." @@ -3518,7 +3527,7 @@ msgstr "Échec" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "Faux" @@ -3534,7 +3543,7 @@ msgstr "Le champ contient une valeur." msgid "Field ends with value." msgstr "Le champ se termine par une valeur." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Champ permettant de passer une spécification de pod Kubernetes ou OpenShift personnalisée." @@ -3550,7 +3559,7 @@ msgstr "Le champ commence par la valeur." msgid "Fifth" msgstr "Cinquième" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3562,7 +3571,7 @@ msgstr "Téléchargement de fichier rejeté. Veuillez sélectionner un seul fich msgid "File, directory or script" msgstr "Fichier, répertoire ou script" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "Heure de Fin" @@ -3580,11 +3589,11 @@ msgstr "Première" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "Prénom" @@ -3609,7 +3618,7 @@ msgstr "Adapter le graphique à la taille de l'écran disponible" msgid "Float" msgstr "Flottement" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3637,7 +3646,7 @@ msgstr "Pour plus d'informations, reportez-vous à" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "Forks" @@ -3664,30 +3673,30 @@ msgid "Friday" msgstr "Vendredi" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "Informations d’identification Galaxy" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "Les identifiants Galaxy doivent appartenir à une Organisation." -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3736,7 +3745,7 @@ msgstr "Paramètres de GitHub" msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3745,7 +3754,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3778,7 +3787,7 @@ msgid "Google OAuth2" msgstr "Google OAuth2" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "Grafana" @@ -3807,7 +3816,7 @@ msgstr "Groupe" msgid "Group details" msgstr "Détails du groupe" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "Type de groupe" @@ -3818,7 +3827,7 @@ msgstr "Type de groupe" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3849,7 +3858,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "HipChat" @@ -3858,17 +3867,17 @@ msgstr "HipChat" msgid "Host" msgstr "Hôte" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "Clé de configuration de l’hôte" @@ -3880,11 +3889,11 @@ msgstr "Nombre d'hôtes" msgid "Host Details" msgstr "Détails sur l'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3897,27 +3906,27 @@ msgstr "Filtre d'hôte" msgid "Host Name" msgstr "Nom d'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3939,10 +3948,10 @@ msgid "Host status information for this job is unavailable." msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas disponibles." #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3951,8 +3960,8 @@ msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas dis #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3960,18 +3969,26 @@ msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas dis msgid "Hosts" msgstr "Hôtes" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3981,9 +3998,9 @@ msgstr "Heure" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "ID" @@ -4004,7 +4021,7 @@ msgid "ID of the panel (optional)" msgstr "ID du panneau (facultatif)" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "IRC" @@ -4085,7 +4102,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "Si cochés, tous les hôtes et groupes qui étaient présent auparavant sur la source externe, mais qui sont maintenant supprimés, seront supprimés de l'inventaire de Tower. Les hôtes et les groupes qui n'étaient pas gérés par la source de l'inventaire seront promus au prochain groupe créé manuellement ou s'il n'y a pas de groupe créé manuellement dans lequel les promouvoir, ils devront rester dans le groupe \"all\" par défaut de cet inventaire." -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4102,7 +4119,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4117,7 +4134,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible." -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4127,11 +4144,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de job de flux de travail en simultané." -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4142,11 +4159,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les faits sont persistants et injectés dans le cache des faits au moment de l'exécution." -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4164,11 +4181,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4178,7 +4195,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4201,17 +4218,17 @@ msgstr "" msgid "Initiated By" msgstr "Initié par" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "Initié par" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "Initié par (nom d'utilisateur)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "Configuration d'Injector" @@ -4229,8 +4246,8 @@ msgstr "Configuration de l'entrée" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "Information d’identification d’Insights" @@ -4243,12 +4260,12 @@ msgstr "Information d’identification d’Insights" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4272,14 +4289,14 @@ msgstr "Filtres de l'instance" msgid "Instance Group" msgstr "Groupe d'instance" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4306,7 +4323,7 @@ msgid "Instance groups" msgstr "Groupes d'instances" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4322,7 +4339,7 @@ msgstr "Entier relatif" msgid "Invalid email address" msgstr "Adresse électronique invalide" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4336,11 +4353,11 @@ msgstr "Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4351,15 +4368,15 @@ msgstr "Inventaires" msgid "Inventories with sources cannot be copied" msgstr "Les inventaires et les sources ne peuvent pas être copiés" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4369,7 +4386,7 @@ msgstr "Les inventaires et les sources ne peuvent pas être copiés" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4407,14 +4424,14 @@ msgstr "Sync Source d’inventaire" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "Sources d'inventaire" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4427,7 +4444,7 @@ msgid "Inventory Update" msgstr "Mise à jour de l'inventaire" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "Fichier d'inventaire" @@ -4435,11 +4452,11 @@ msgstr "Fichier d'inventaire" msgid "Inventory not found." msgstr "Inventaire non trouvé." -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "Synchronisation des inventaires" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "Erreurs de synchronisation des inventaires" @@ -4449,15 +4466,15 @@ msgstr "Erreurs de synchronisation des inventaires" #~ msgid "Isolated" #~ msgstr "Isolé" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4492,22 +4509,22 @@ msgstr "JSON :" msgid "January" msgstr "Janvier" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "Job" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "Erreur d'annulation d'un Job" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "Erreur de suppression d’un Job" @@ -4517,7 +4534,7 @@ msgstr "Découpage de job" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "Découpage de job" @@ -4532,12 +4549,12 @@ msgstr "Statut Job" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "Balises Job" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4567,7 +4584,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4575,15 +4592,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "Type de Job" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "Statut Job" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "Onglet Graphique de l'état des Jobs" @@ -4593,10 +4610,10 @@ msgstr "Onglet Graphique de l'état des Jobs" msgid "Job templates" msgstr "Modèles de Jobs" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4643,7 +4660,7 @@ msgstr "Sélection de la clé" msgid "Key typeahead" msgstr "En-tête de la clé" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "Mot-clé " @@ -4700,7 +4717,7 @@ msgstr "LDAP4" msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "Nom du label" @@ -4711,8 +4728,8 @@ msgstr "Nom du label" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "Libellés" @@ -4733,15 +4750,15 @@ msgstr "Dernière connexion" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4758,15 +4775,15 @@ msgstr "Dernière modification" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "Nom" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "Dernière exécution" @@ -4783,8 +4800,8 @@ msgstr "Dernier Job" msgid "Last job run" msgstr "Dernière exécution du Job" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4803,10 +4820,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "Lancer" @@ -4845,7 +4862,7 @@ msgstr "" msgid "Launched By" msgstr "Lancé par" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "Lancé par (Nom d'utilisateur)" @@ -4857,11 +4874,11 @@ msgstr "Lancé par (Nom d'utilisateur)" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4889,7 +4906,7 @@ msgstr "Moins ou égal à la comparaison." #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4898,8 +4915,8 @@ msgstr "Moins ou égal à la comparaison." #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "Limite" @@ -4942,7 +4959,7 @@ msgid "Logout" msgstr "Déconnexion" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "Recherche modale" @@ -4979,12 +4996,12 @@ msgstr "Informations d’identification de la machine" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5013,13 +5030,13 @@ msgstr "Job de gestion non trouvé." msgid "Management jobs" msgstr "Jobs de gestion" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5030,12 +5047,12 @@ msgid "March" msgstr "Mars" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "Mattermost" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "Nombre d'hôtes max." @@ -5051,12 +5068,12 @@ msgstr "Longueur maximale" msgid "May" msgstr "Mai" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "Membres" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "Métadonnées" @@ -5136,38 +5153,39 @@ msgstr "Modifié" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5175,7 +5193,7 @@ msgid "Modified By (Username)" msgstr "Modifié par (nom d'utilisateur)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "Modifié par (nom d'utilisateur)" @@ -5236,50 +5254,50 @@ msgstr "Options à choix multiples." #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5300,42 +5318,42 @@ msgstr "Options à choix multiples." #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5343,62 +5361,63 @@ msgstr "Options à choix multiples." #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5410,19 +5429,19 @@ msgstr "Options à choix multiples." #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "Nom" @@ -5446,7 +5465,7 @@ msgstr "Jamais mis à jour" msgid "Never expires" msgstr "N'expire jamais" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "Nouveau" @@ -5455,14 +5474,14 @@ msgstr "Nouveau" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "Suivant" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5472,12 +5491,12 @@ msgstr "Exécution suivante" msgid "No" msgstr "Non" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5515,17 +5534,17 @@ msgstr "Aucun résultat trouvé" msgid "No results found" msgstr "Aucun résultat trouvé" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "Aucune question d'enquête trouvée." -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "Aucun(e) {pluralizedItemName} trouvé(e)" @@ -5551,7 +5570,7 @@ msgstr "Aucune (éxecution unique)" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "Utilisateur normal" @@ -5580,7 +5599,7 @@ msgstr "" #~ msgstr "Notez que seuls les hôtes qui sont directement dans ce groupe peuvent être dissociés. Les hôtes qui se trouvent dans les sous-groupes doivent être dissociés directement au niveau du sous-groupe auquel ils appartiennent." #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5635,9 +5654,9 @@ msgstr "Couleur des notifications" msgid "Notification Template not found." msgstr "Modèle de notification introuvable." -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5652,16 +5671,16 @@ msgstr "Type de notification" msgid "Notification color" msgstr "Couleur de la notification" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "Type de notification" @@ -5686,7 +5705,7 @@ msgid "November" msgstr "Novembre" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "OK" @@ -5714,7 +5733,7 @@ msgstr "Octobre" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "Désactivé" @@ -5732,7 +5751,7 @@ msgstr "Désactivé" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "Le" @@ -5766,12 +5785,12 @@ msgstr "Grouper seulement par" msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "Détails de l'option" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5795,21 +5814,21 @@ msgstr "En option, sélectionnez les informations d'identification à utiliser p #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "Options" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5820,14 +5839,14 @@ msgstr "Options" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5837,13 +5856,13 @@ msgstr "Options" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "Organisation" @@ -5852,7 +5871,7 @@ msgstr "Organisation" msgid "Organization (Name)" msgstr "Organisation (Nom)" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "Nom de l'organisation" @@ -5862,9 +5881,9 @@ msgstr "Organisation non trouvée." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5879,7 +5898,7 @@ msgstr "Organisations" msgid "Other prompts" msgstr "Autres invites" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5912,7 +5931,7 @@ msgid "PUT" msgstr "PLACER" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "Pagerduty" @@ -5956,7 +5975,7 @@ msgstr "Passez des changements supplémentaires en ligne de commande. Il y a deu #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5964,7 +5983,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation Ansible Tower pour obtenir des exemples de syntaxe." @@ -5974,26 +5993,30 @@ msgstr "Transmettez des variables de ligne de commandes supplémentaires au play #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "Mot de passe" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "Le mois dernier" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "Les deux dernières semaines" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "La semaine dernière" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "En attente" @@ -6022,14 +6045,14 @@ msgstr "Lancer" msgid "Play Count" msgstr "Compte de jeux" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "Playbook" @@ -6037,7 +6060,7 @@ msgstr "Playbook" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -6047,25 +6070,25 @@ msgstr "" msgid "Playbook Directory" msgstr "Répertoire de playbook" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "Exécution du playbook" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Nom du playbook" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "Exécution du playbook" @@ -6073,12 +6096,12 @@ msgstr "Exécution du playbook" msgid "Plays" msgstr "Lancements" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "Veuillez ajouter des questions d'enquête." -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Veuillez ajouter {brandName} pour remplir cette liste" @@ -6094,7 +6117,7 @@ msgstr "Veuillez cliquer sur le bouton de démarrage pour commencer." msgid "Please enter a valid URL" msgstr "Veuillez entrer une URL valide" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "Entrez une valeur." @@ -6106,9 +6129,13 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "Veuillez choisir un numéro de jour entre 1 et 31." +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" +msgstr "" + #: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." -msgstr "Sélectionnez un inventaire ou cochez l’option Me le demander au lancement." +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "Sélectionnez un inventaire ou cochez l’option Me le demander au lancement." #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." @@ -6118,7 +6145,7 @@ msgstr "Veuillez choisir une date/heure de fin qui vient après la date/heure de msgid "Please select an organization before editing the host filter" msgstr "Veuillez sélectionner une organisation avant d'éditer le filtre de l'hôte." -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "Remplacement des spécifications du pod" @@ -6184,8 +6211,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "Prévisualisation" @@ -6193,7 +6220,7 @@ msgstr "Prévisualisation" msgid "Private key passphrase" msgstr "Phrase de passe pour la clé privée" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "Élévation des privilèges" @@ -6202,9 +6229,9 @@ msgid "Privilege escalation password" msgstr "Mot de passe pour l’élévation des privilèges" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6242,16 +6269,16 @@ msgstr "Mise à jour du projet" msgid "Project not found." msgstr "Projet non trouvé." -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "Erreurs de synchronisation du projet" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6273,7 +6300,7 @@ msgstr "Invite" msgid "Prompt Overrides" msgstr "Invite Remplacements" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6293,8 +6320,8 @@ msgstr "Valeurs incitatrices" #~ msgid "Prompts" #~ msgstr "Invites" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6330,7 +6357,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "Fournir les paires clé/valeur en utilisant soit YAML soit JSON." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6342,7 +6369,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6352,21 +6379,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "URL de rappel d’exécution " -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "Détails de rappel d’exécution" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "Rappels d’exécution " #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6386,23 +6413,23 @@ msgstr "Paramètres RADIUS" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "Lecture" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "Jobs récents" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "Onglet Liste des Jobs récents" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "Modèles récents" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "Onglet Liste des modèles récents" @@ -6414,10 +6441,10 @@ msgstr "Liste de destinataires" msgid "Recipient list" msgstr "Liste de destinataires" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" @@ -6430,7 +6457,7 @@ msgstr "Red Hat Satellite 6" msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6438,7 +6465,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "Redirection d'URIs." @@ -6458,7 +6485,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6473,7 +6500,7 @@ msgid "Refresh Token" msgstr "Actualiser Jeton" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "Actualiser l’expiration du jeton" @@ -6481,7 +6508,7 @@ msgstr "Actualiser l’expiration du jeton" msgid "Regions" msgstr "Régions" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6497,8 +6524,8 @@ msgstr "Groupes liés" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "Relancer" @@ -6526,10 +6553,10 @@ msgstr "Relancer sur" msgid "Relaunch using host parameters" msgstr "Relancer en utilisant les paramètres de l'hôte" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "Archive à distance" @@ -6552,7 +6579,7 @@ msgstr "Supprimer le lien" msgid "Remove Node" msgstr "Supprimer le nœud" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "Supprimez toutes les modifications locales avant d’effectuer une mise à jour." @@ -6580,8 +6607,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6591,7 +6618,7 @@ msgid "Required" msgstr "Obligatoire" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6612,7 +6639,7 @@ msgstr "Ressource supprimée" #~ msgstr "Type de ressources" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "Ressources" @@ -6639,12 +6666,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "Renvoi" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6688,7 +6715,7 @@ msgid "Revert to factory default." msgstr "Revenir à la valeur usine par défaut." #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "Révision" @@ -6698,17 +6725,17 @@ msgid "Revision #" msgstr "Révision n°" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "Rocket.Chat" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "Rôle" @@ -6729,7 +6756,7 @@ msgstr "Rôles" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "Exécuter" @@ -6760,17 +6787,17 @@ msgstr "Continuer" msgid "Run type" msgstr "Type d’exécution" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "En cours d'exécution" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "Jobs en cours d'exécution" @@ -6787,7 +6814,7 @@ msgstr "SAML" msgid "SAML settings" msgstr "Paramètres SAML" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "Mise à jour SCM" @@ -6833,9 +6860,9 @@ msgstr "Samedi" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6883,9 +6910,9 @@ msgstr "Le planning est inactif." msgid "Schedule is missing rrule" msgstr "La programmation manque de règles" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6905,7 +6932,7 @@ msgstr "Programmations" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "Champ d'application" @@ -6926,11 +6953,11 @@ msgid "Scroll previous" msgstr "Faire défiler la page précédente" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "Rechercher" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6959,18 +6986,18 @@ msgstr "Voir les erreurs sur la gauche" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "Sélectionner" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "Sélectionner les groupes" @@ -7003,7 +7030,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "Sélectionnez les rôles à appliquer" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "Sélectionner des équipes" @@ -7019,7 +7046,7 @@ msgstr "Sélectionnez un type de nœud" msgid "Select a Resource Type" msgstr "Sélectionnez un type de ressource" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7033,11 +7060,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche." -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "Sélectionnez un type d’identifiant" @@ -7062,7 +7089,7 @@ msgstr "Sélectionnez un module" msgid "Select a playbook" msgstr "Choisir un playbook" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -7071,7 +7098,7 @@ msgid "Select a row to approve" msgstr "Sélectionnez une ligne à approuver" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "Sélectionnez une ligne à supprimer" @@ -7083,7 +7110,7 @@ msgstr "Sélectionnez une ligne pour refuser" msgid "Select a row to disassociate" msgstr "Sélectionnez une ligne à dissocier" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -7091,7 +7118,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "Sélectionnez une date et une heure valables pour ce champ" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7100,29 +7127,29 @@ msgstr "Sélectionnez une date et une heure valables pour ce champ" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "Sélectionnez une valeur pour ce champ" @@ -7130,12 +7157,12 @@ msgstr "Sélectionnez une valeur pour ce champ" msgid "Select a webhook service." msgstr "Sélectionnez un service webhook." -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "Tout sélectionner" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -7143,15 +7170,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "Sélectionnez un inventaire pour le flux de travail. Cet inventaire est appliqué à tous les nœuds de modèle de tâche qui demandent un inventaire." -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7184,31 +7211,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "Faites une sélection à partir de la liste des répertoires trouvés dans le chemin de base du projet. Le chemin de base et le répertoire de playbook fournissent ensemble le chemin complet servant à localiser les playbooks." -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "Sélectionnez les éléments de la liste" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "Sélectionnez le type de Job" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "Sélectionnez une période" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "Sélectionner les rôles à pourvoir" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "Sélectionner le chemin d'accès de la source" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -7221,17 +7253,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cet inventaire." -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation." -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "Sélectionnez l'application à laquelle ce jeton appartiendra." @@ -7243,7 +7275,7 @@ msgstr "Sélectionnez les informations d’identification qu’il vous faut util #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "Sélectionnez l'environnement virtuel Python personnalisé sur lequel exécuter cette source d'inventaire." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7255,12 +7287,12 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7271,7 +7303,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "Sélectionnez l’inventaire contenant les hôtes que vous souhaitez gérer." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7282,16 +7314,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "Sélectionnez le fichier d'inventaire à synchroniser par cette source. Vous pouvez le choisir dans le menu déroulant ou saisir un fichier dans l'entrée." -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "Sélectionnez l'inventaire auquel cet hôte appartiendra." -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "Sélectionnez le playbook qui devra être exécuté par cette tâche." -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7301,11 +7333,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "Sélectionnez {0}" @@ -7313,12 +7345,12 @@ msgstr "Sélectionnez {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7331,7 +7363,7 @@ msgstr "Sélectionnez {0}" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7339,8 +7371,8 @@ msgstr "Sélectionné" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "Catégorie sélectionnée" @@ -7364,7 +7396,7 @@ msgstr "Septembre" msgid "Service account JSON file" msgstr "Fichier JSON Compte de service" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "Définir une valeur pour ce champ" @@ -7377,7 +7409,7 @@ msgstr "Définissez le nombre de jours pendant lesquels les données doivent êt msgid "Set preferences for data collection, logos, and logins" msgstr "Définissez des préférences pour la collection des données, les logos et logins." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7385,7 +7417,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jobs ne seront pas attribués à cette instance." -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Définir sur sur Public ou Confidentiel selon le degré de sécurité du périphérique client." @@ -7419,8 +7451,8 @@ msgstr "Nom du paramètre" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "Paramètres" @@ -7434,11 +7466,11 @@ msgstr "Afficher" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "Afficher les modifications" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "Afficher tous les groupes" @@ -7456,7 +7488,7 @@ msgstr "" msgid "Show less" msgstr "Afficher moins de détails" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "Afficher uniquement les groupes racines" @@ -7512,7 +7544,7 @@ msgstr "Sélection par simple pression d'une touche" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "Balises de saut" @@ -7525,7 +7557,7 @@ msgstr "Balises de saut" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7552,7 +7584,7 @@ msgid "Skipped" msgstr "Sauter" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "Slack" @@ -7599,7 +7631,7 @@ msgstr "Trier l'ordre des questions" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "Source" @@ -7614,7 +7646,7 @@ msgstr "Source" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "Branche Contrôle de la source" @@ -7624,11 +7656,11 @@ msgstr "Branche/ Balise / Commit du Contrôle de la source" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "Identifiant Contrôle de la source" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "Type d’Identifiant du Contrôle de la source" @@ -7643,18 +7675,18 @@ msgstr "Refspec Contrôle de la source" msgid "Source Control Type" msgstr "Type de Contrôle de la source" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "URL Contrôle de la source" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7674,11 +7706,11 @@ msgstr "Variables Source" msgid "Source Workflow Job" msgstr "Flux de travail Source" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "Branche Contrôle de la source" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "Détails de la source" @@ -7726,7 +7758,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "Spécifier une couleur de notification. Les couleurs acceptées sont d'un code de couleur hex (exemple : #3af or #789abc) ." -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "Spécifier le champ d'application du jeton" @@ -7757,7 +7789,7 @@ msgstr "Onglet Standard Out" msgid "Start" msgstr "Démarrer" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "Heure Début" @@ -7785,31 +7817,31 @@ msgid "Start sync source" msgstr "Démarrer la source de synchronisation" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "Démarré" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "État" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7819,7 +7851,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7831,12 +7863,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7844,11 +7876,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7856,18 +7888,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -7888,12 +7920,16 @@ msgstr "Message de réussite" msgid "Success message body" msgstr "Corps du message de réussite" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "Réussi" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "Copie réussie dans le presse-papiers !" @@ -7907,14 +7943,14 @@ msgstr "Dim." msgid "Sunday" msgstr "Dimanche" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "Questionnaire" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "Liste des enquêtes" @@ -7947,16 +7983,16 @@ msgstr "Sync" msgid "Sync Project" msgstr "Projet Sync" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "Tout sync" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "Synchroniser toutes les sources" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "Erreur de synchronisation" @@ -7969,26 +8005,26 @@ msgstr "Synchronisation pour la révision" msgid "System" msgstr "Système" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "Administrateur du système" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "Auditeur système" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "Les administrateurs système ont un accès illimité à toutes les ressources." @@ -8000,7 +8036,7 @@ msgstr "TACACS+" msgid "TACACS+ settings" msgstr "Paramètres de la TACACS" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "Onglets" @@ -8014,7 +8050,7 @@ msgstr "Onglets" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8061,7 +8097,7 @@ msgstr "Tâche" msgid "Task Count" msgstr "Nombre de tâches" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -8074,7 +8110,7 @@ msgid "Team" msgstr "Équipe" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "Rôles d’équipe" @@ -8085,19 +8121,19 @@ msgstr "Équipe non trouvée." #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8112,10 +8148,10 @@ msgstr "Mise à jour introuvable" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8124,9 +8160,9 @@ msgstr "" msgid "Templates" msgstr "Modèles" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "Test" @@ -8164,15 +8200,19 @@ msgstr "Zone de texte" msgid "Textarea" msgstr "Zone de texte" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "Le" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "Le type de permission que l'utilisateur doit utiliser pour acquérir des jetons pour cette application." @@ -8187,7 +8227,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "Délai (en secondes) avant que la notification par e-mail cesse d'essayer de joindre l'hôte et expire. Compris entre 1 et 120 secondes." -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8209,11 +8249,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base." -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -8228,11 +8268,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "Le premier extrait toutes les références. Le second extrait la requête Github pull numéro 62, dans cet exemple la branche doit être `pull/62/head`." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8243,7 +8283,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "Nombre maximal d'hôtes pouvant être gérés par cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation Ansible pour plus de détails." -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8289,7 +8329,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "Le groupe d'instances de Tower ne peut pas être supprimé." @@ -8359,17 +8399,21 @@ msgstr "Ces arguments sont utilisés avec le module spécifié. Vous pouvez trou msgid "Third" msgstr "Troisième" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "Cette action supprimera les éléments suivants :" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "Cette action permettra de dissocier tous les rôles de cet utilisateur des équipes sélectionnées." -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "Cette action permettra de dissocier le rôle suivant de {brandName} :" @@ -8377,7 +8421,7 @@ msgstr "Cette action permettra de dissocier le rôle suivant de {brandName} :" msgid "This action will disassociate the following:" msgstr "Cette action dissociera les éléments suivants :" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8385,7 +8429,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8403,7 +8447,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8417,7 +8461,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8447,7 +8491,7 @@ msgstr "Ce champ ne doit pas être vide" msgid "This field must be a number" msgstr "Ce champ doit être un numéro" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "Ce champ doit être un nombre et avoir une valeur comprise entre {brandName} et {1}" @@ -8464,7 +8508,7 @@ msgstr "Ce champ doit être une expression régulière" msgid "This field must be an integer" msgstr "Ce champ doit être un nombre entier" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "Ce champ doit comporter au moins {brandName} caractères" @@ -8476,9 +8520,10 @@ msgstr "Ce champ doit comporter au moins {brandName} caractères" msgid "This field must be greater than 0" msgstr "Ce champ doit être supérieur à 0" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8488,7 +8533,7 @@ msgstr "Ce champ ne doit pas être vide" msgid "This field must not contain spaces" msgstr "Ce champ ne doit pas contenir d'espaces" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "Ce champ ne doit pas dépasser {brandName} caractères" @@ -8508,11 +8553,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8524,7 +8569,7 @@ msgstr "C'est la seule fois où le secret du client sera révélé." msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "C'est la seule fois où la valeur du jeton et la valeur du jeton de rafraîchissement associée seront affichées." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8541,14 +8586,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "Ce projet doit être mis à jour" +#~ msgid "This project needs to be updated" +#~ msgstr "Ce projet doit être mis à jour" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "Il manque un inventaire dans ce calendrier" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "Ce tableau ne contient pas les valeurs d'enquête requises" @@ -8557,7 +8602,7 @@ msgstr "Ce tableau ne contient pas les valeurs d'enquête requises" msgid "This step contains errors" msgstr "Cette étape contient des erreurs" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe." @@ -8575,7 +8620,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "Ce flux de travail ne comporte aucun nœud configuré." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8588,14 +8633,14 @@ msgstr "Jeu." msgid "Thursday" msgstr "Jeudi" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "Durée" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8631,7 +8676,7 @@ msgstr "Expiré" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "Délai d'attente" @@ -8730,11 +8775,11 @@ msgstr "Jetons" msgid "Tools" msgstr "Outils" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "Total Jobs" @@ -8748,7 +8793,7 @@ msgstr "Total Nœuds" msgid "Total jobs" msgstr "Total Jobs" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8757,8 +8802,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8768,7 +8813,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "Vrai" @@ -8782,59 +8827,59 @@ msgid "Tuesday" msgstr "Mardi" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "Type" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "Détails sur le type" @@ -8853,7 +8898,7 @@ msgstr "Non disponible" msgid "Undo" msgstr "Annuler" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8880,7 +8925,7 @@ msgstr "Annuler les modifications non enregistrées" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "Mettre à jour Révision au lancement" @@ -8918,11 +8963,11 @@ msgstr "Mettre à jour la clé de webhook" msgid "Updating" msgstr "Mise à jour en cours" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8984,21 +9029,21 @@ msgid "User Interface settings" msgstr "Paramètres de l'interface utilisateur" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "Rôles des utilisateurs" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "Type d’utilisateur" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -9028,27 +9073,27 @@ msgstr "Jetons d'utilisateur" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "Nom d'utilisateur" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9058,30 +9103,30 @@ msgstr "Utilisateurs" msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "Variables" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -9093,7 +9138,7 @@ msgstr "Mot de passe Vault" msgid "Vault password | {credId}" msgstr "Mot de passe Vault | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -9107,11 +9152,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "Verbosité" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9363,7 +9408,7 @@ msgid "View smart inventory host details" msgstr "Voir les détails de l'hôte de l'inventaire smart" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "Affichages" @@ -9377,13 +9422,13 @@ msgstr "Visualiseur" msgid "WARNING:" msgstr "AVERTISSEMENT :" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "En attente" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "Avertissement" @@ -9391,16 +9436,16 @@ msgstr "Avertissement" msgid "Warning: Unsaved Changes" msgstr "Avertissement : modifications non enregistrées" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "Webhook" @@ -9440,8 +9485,8 @@ msgstr "Service webhook" msgid "Webhook URL" msgstr "URL du webhook" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "Détails de webhook" @@ -9482,7 +9527,7 @@ msgstr "Jour du week-end" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "Bienvenue à Ansible Tower {brandName}! Veuillez vous connecter." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9531,15 +9576,15 @@ msgid "Workflow Approval not found." msgstr "Approbation du flux de travail non trouvée." #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "Approbations des flux de travail" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9571,7 +9616,7 @@ msgstr "" msgid "Workflow Link" msgstr "Lien vers le flux de travail" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "Modèle de flux de travail" @@ -9633,7 +9678,7 @@ msgstr "Message d'expiration de flux de travail" msgid "Workflow timed out message body" msgstr "Corps du message d’expiration de flux de travail" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "Écriture" @@ -9657,11 +9702,11 @@ msgstr "Vous n'êtes pas en mesure d'agir sur les approbations de flux de travai msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "Vous n'êtes pas en mesure d'agir sur les autorisations de flux de travail suivantes : {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "Vous ne pouvez pas sélectionner plusieurs identifiants d’archivage sécurisé (Vault) avec le même identifiant de Vault. Cela désélectionnerait automatiquement les autres identifiants de Vault." -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 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}" @@ -9669,7 +9714,7 @@ msgstr "Vous n'avez pas la permission de supprimer les groupes suivants : {items msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableToDelete}" @@ -9707,12 +9752,12 @@ msgstr "Zoom avant" msgid "Zoom Out" msgstr "Zoom arrière" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "une nouvelle clé webhook sera générée lors de la sauvegarde." -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "une nouvelle url de webhook sera générée lors de la sauvegarde." @@ -9738,7 +9783,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "annuler supprimer" @@ -9751,12 +9796,12 @@ msgid "command" msgstr "commande" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "confirmer supprimer" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "confirmer dissocier" @@ -9786,16 +9831,16 @@ msgstr "dissocier" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "Modifier" @@ -9956,8 +10001,8 @@ msgstr "choisir la verbosité" msgid "social login" msgstr "social login" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -10001,11 +10046,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -10013,31 +10058,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -10045,15 +10090,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -10141,8 +10186,12 @@ msgstr "" msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/ja/messages.po b/awx/ui_next/src/locales/ja/messages.po index 230fba0f9c..47cf619921 100644 --- a/awx/ui_next/src/locales/ja/messages.po +++ b/awx/ui_next/src/locales/ja/messages.po @@ -45,7 +45,7 @@ msgstr "/ (プロジェクト root)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "0 (正常)" @@ -66,7 +66,7 @@ msgstr "1 (情報)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "1 (詳細)" @@ -82,7 +82,7 @@ msgstr "2 (デバッグ)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "2 (より詳細)" @@ -93,7 +93,7 @@ msgstr "2 (より詳細)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "3 (デバッグ)" @@ -104,7 +104,7 @@ msgstr "3 (デバッグ)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "4 (接続デバッグ)" @@ -123,7 +123,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "取得する refspec (Ansible git モジュールに渡します)。このパラメーターを使用すると、(パラメーターなしでは利用できない) ブランチのフィールド経由で参照にアクセスできるようになります。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -149,7 +149,7 @@ msgid "About" msgstr "情報" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -168,7 +168,7 @@ msgid "Access" msgstr "アクセス" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "アクセストークンの有効期限" @@ -185,51 +185,51 @@ msgstr "アカウントトークン" msgid "Action" msgstr "アクション" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "アクション" @@ -248,7 +248,7 @@ msgid "Activity" msgstr "アクティビティー" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "アクティビティーストリーム" @@ -257,7 +257,7 @@ msgstr "アクティビティーストリーム" msgid "Activity Stream settings" msgstr "アクティビティーストリームの設定" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "アクティビティーストリームのタイプセレクター" @@ -267,10 +267,6 @@ msgstr "アクター" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "追加" @@ -307,7 +303,7 @@ msgstr "新規ノードの追加" msgid "Add a new node between these two nodes" msgstr "これら 2 つのノードの間に新しいノードを追加します" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "コンテナーグループの追加" @@ -319,15 +315,15 @@ msgstr "既存グループの追加" msgid "Add existing host" msgstr "既存ホストの追加" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "インスタンスグループの追加" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "インベントリーの追加" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "新規ジョブテンプレートの追加" @@ -339,23 +335,23 @@ msgstr "新規グループの追加" msgid "Add new host" msgstr "新規ホストの追加" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "リソースタイプの追加" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "スマートインベントリーの追加" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "チームパーミッションの追加" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "ユーザー権限の追加" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "ワークフローテンプレートの追加" @@ -364,12 +360,12 @@ msgstr "ワークフローテンプレートの追加" #~ msgstr "管理" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "管理" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "詳細" @@ -416,13 +412,17 @@ msgstr "アラートモーダル" msgid "All" msgstr "すべて" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "すべてのジョブタイプ" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "ブランチの上書き許可" @@ -431,7 +431,7 @@ msgstr "ブランチの上書き許可" msgid "Allow Provisioning Callbacks" msgstr "プロビジョニングコールバックの許可" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -441,7 +441,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "許可された URI リスト (スペース区切り)" @@ -502,10 +502,10 @@ msgstr "回答の変数名" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "アプリケーション" @@ -532,17 +532,17 @@ msgstr "アプリケーション名" msgid "Application not found." msgstr "アプリケーションが見つかりません。" -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "アプリケーション" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "アプリケーションおよびトークン" @@ -622,7 +622,7 @@ msgstr "{1} から {0} のアクセスを削除しますか? これを行うと msgid "Are you sure you want to remove {0} access from {username}?" msgstr "{username} からの {0} のアクセスを削除してもよろしいですか?" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "このジョブをキャンセルする要求を送信してよろしいですか?" @@ -631,16 +631,17 @@ msgstr "このジョブをキャンセルする要求を送信してよろしい msgid "Arguments" msgstr "引数" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "アーティファクト" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "関連付け" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "関連付けのロールエラー" @@ -648,7 +649,7 @@ msgstr "関連付けのロールエラー" msgid "Association modal" msgstr "関連付けモーダル" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "このフィールドには、少なくとも 1 つの値を選択する必要があります。" @@ -661,12 +662,12 @@ msgid "Authentication" msgstr "認証" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "認証コードの有効期限" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "認証付与タイプ" @@ -686,7 +687,7 @@ msgstr "Azure AD の設定" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -747,7 +748,7 @@ msgstr "スケジュールに戻る" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -831,7 +832,7 @@ msgstr "" msgid "Brand Image" msgstr "ブランドイメージ" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -839,7 +840,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -850,7 +851,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "キャッシュタイムアウト" @@ -874,38 +875,38 @@ msgstr "キャッシュのタイムアウト (秒)" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "取り消し" @@ -914,8 +915,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "ジョブの取り消し" @@ -928,8 +929,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "ジョブの取り消し" @@ -941,7 +942,7 @@ msgstr "リンク変更の取り消し" msgid "Cancel link removal" msgstr "リンク削除の取り消し" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "ルックアップの取り消し" @@ -979,12 +980,12 @@ msgstr "" #~ msgstr "同期プロセスの取り消し" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1001,7 +1002,7 @@ msgstr "" #~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #~ msgstr "ログアグリゲーターホストとログアグリゲータータイプを指定せずにログアグリゲーターを有効にすることはできません。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "容量" @@ -1050,7 +1051,7 @@ msgid "Channel" msgstr "チャネル" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "チェック" @@ -1066,7 +1067,7 @@ msgstr "特定フィールドの値が提供されたリストに存在するか msgid "Choose a .json file" msgstr ".json ファイルの選択" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "通知タイプの選択" @@ -1074,7 +1075,7 @@ msgstr "通知タイプの選択" msgid "Choose a Playbook Directory" msgstr "Playbook ディレクトリーの選択" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "ソースコントロールタイプの選択" @@ -1083,7 +1084,7 @@ msgid "Choose a Webhook Service" msgstr "Webhook サービスの選択" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "ジョブタイプの選択" @@ -1091,7 +1092,7 @@ msgstr "ジョブタイプの選択" msgid "Choose a module" msgstr "モジュールの選択" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "ソースの選択" @@ -1135,20 +1136,20 @@ msgstr "新しいロールを受け取るリソースのタイプを選択しま #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "クリーニング" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "すべてのフィルターの消去" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1160,7 +1161,7 @@ msgstr "使用可能なノードをクリックして、新しいリンクを作 msgid "Click the Edit button below to reconfigure the node." msgstr "下の編集ボタンをクリックして、ノードを再構成します。" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "このボタンをクリックして、選択した認証情報と指定した入力を使用してシークレット管理システムへの接続を確認します。" @@ -1194,7 +1195,7 @@ msgid "Client secret" msgstr "クライアントシークレット" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "クライアントタイプ" @@ -1203,7 +1204,7 @@ msgstr "クライアントタイプ" msgid "Close" msgstr "閉じる" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1215,7 +1216,7 @@ msgstr "クラウド" msgid "Collapse" msgstr "折りたたむ" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1238,11 +1239,11 @@ msgstr "コマンド" #~ msgid "Completed jobs" #~ msgstr "完了したジョブ" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "同時実行ジョブ" @@ -1256,11 +1257,11 @@ msgstr "" msgid "Confirm Delete" msgstr "削除の確認" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "パスワードの確認" @@ -1276,7 +1277,7 @@ msgstr "" msgid "Confirm delete" msgstr "削除の確認" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "関連付けの解除の確認" @@ -1296,7 +1297,7 @@ msgstr "すべてのノードの削除の確認" msgid "Confirm revert all" msgstr "すべて元に戻すことを確認" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1339,7 +1340,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1408,8 +1409,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "Copyright 2019 Red Hat, Inc." -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "作成" @@ -1536,25 +1537,25 @@ msgstr "新規ソースの作成" msgid "Create user token" msgstr "ユーザートークンの作成" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1576,38 +1577,39 @@ msgstr "作成済み" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1615,26 +1617,26 @@ msgid "Created By (Username)" msgstr "作成者 (ユーザー名)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "作成者 (ユーザー名)" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "認証情報" @@ -1643,20 +1645,20 @@ msgstr "認証情報" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "認証情報名" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "認証情報タイプ" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1674,11 +1676,11 @@ msgstr "認証情報のパスワード" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "Kubernetes または OpenShift での認証に使用する認証情報。\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1689,21 +1691,21 @@ msgstr "認証情報タイプが見つかりません。" #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "認証情報" @@ -1716,7 +1718,7 @@ msgstr "" msgid "Current page" msgstr "現在のページ" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "カスタム Pod 仕様" @@ -1736,8 +1738,8 @@ msgstr "" msgid "Customize messages…" msgstr "メッセージのカスタマイズ…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "Pod 仕様のカスタマイズ" @@ -1747,11 +1749,11 @@ msgid "DELETED" msgstr "削除済み" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "ダッシュボード" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "ダッシュボード (すべてのアクティビティー)" @@ -1770,11 +1772,11 @@ msgstr "日" msgid "Days of Data to Keep" msgstr "データの保持日数" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1788,7 +1790,7 @@ msgid "Default" msgstr "デフォルト" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1817,32 +1819,32 @@ msgstr "システムレベルの機能および関数の定義" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1869,22 +1871,22 @@ msgstr "" #~ msgid "Delete Groups?" #~ msgstr "グループを削除しますか?" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "ホストの削除" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "インベントリーの削除" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "ジョブの削除" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "ジョブテンプレートの削除" @@ -1900,15 +1902,15 @@ msgstr "組織の削除" msgid "Delete Project" msgstr "プロジェクトの削除" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "質問の削除" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "スケジュールの削除" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "Survey の削除" @@ -1928,7 +1930,7 @@ msgstr "ユーザートークンの削除" msgid "Delete Workflow Approval" msgstr "ワークフロー承認の削除" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "新規ワークフロージョブテンプレートの削除" @@ -1941,20 +1943,20 @@ msgstr "すべてのノードの削除" msgid "Delete application" msgstr "アプリケーションの削除" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "認証情報タイプの削除" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "エラーの削除" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "インスタンスグループの削除" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "インベントリーソースの削除" @@ -1963,11 +1965,11 @@ msgstr "インベントリーソースの削除" msgid "Delete on Update" msgstr "更新時のデプロイ" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "スマートインベントリーの削除" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1997,16 +1999,16 @@ msgstr "{pluralizedItemName} を削除しますか?" msgid "Deleted" msgstr "削除済み" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "削除エラー" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "削除エラー" @@ -2031,75 +2033,76 @@ msgstr "{0} - {1} により拒否済み" msgid "Deny" msgstr "拒否" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "説明" @@ -2238,13 +2241,13 @@ msgstr "SSL 検証の無効化" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "関連付けの解除" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "グループのホストとの関連付けを解除しますか?" @@ -2260,17 +2263,17 @@ msgstr "インスタンスグループへのインスタンスの関連付けを msgid "Disassociate related group(s)?" msgstr "関連するグループの関連付けを解除しますか?" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "関連するチームの関連付けを解除しますか?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "ロールの関連付けの解除" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "ロールの関連付けの解除!" @@ -2278,7 +2281,7 @@ msgstr "ロールの関連付けの解除!" msgid "Disassociate?" msgstr "関連付けを解除しますか?" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2293,8 +2296,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2305,7 +2308,7 @@ msgstr "" msgid "Download Output" msgstr "出力のダウンロード" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "メール" @@ -2330,7 +2333,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "このインベントリーでジョブを実行する際は常に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2340,23 +2343,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "このプロジェクトでジョブを実行する際は常に、ジョブの開始前にプロジェクトのリビジョンを更新します。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2383,17 +2386,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2588,9 +2591,9 @@ msgid "Elapsed time that the job ran" msgstr "ジョブ実行の経過時間" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "メール" @@ -2601,11 +2604,11 @@ msgstr "メールオプション" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "同時実行ジョブの有効化" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "ファクトストレージの有効化" @@ -2618,14 +2621,14 @@ msgstr "HTTPS 証明書の検証を有効化" msgid "Enable Privilege Escalation" msgstr "権限昇格の有効化" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "Webhook の有効化" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "このワークフローのジョブテンプレートの Webhook を有効にします。" @@ -2650,7 +2653,7 @@ msgstr "権限昇格の有効化" msgid "Enable simplified login for your {brandName} applications" msgstr "{brandName} アプリケーションのログインの簡素化の有効化" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "このテンプレートの Webhook を有効にします。" @@ -2669,7 +2672,7 @@ msgstr "有効な値" msgid "Enabled Variable" msgstr "有効な変数" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2752,7 +2755,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" @@ -2819,11 +2822,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>Tower プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>aws_ec2 プラグイン設定ガイドを参照してください。" @@ -2859,16 +2862,16 @@ msgstr "JSON または YAML 構文のいずれかを使用して変数を入力 #~ msgid "Environment" #~ msgstr "環境" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "エラー" @@ -2893,91 +2896,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "エラー!" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "イベント" @@ -2993,7 +2997,7 @@ msgstr "イベント詳細モーダル" msgid "Event summary not available" msgstr "イベントの概要はありません" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "イベント" @@ -3017,7 +3021,7 @@ msgstr "Subversion Source Control のサンプル URL には以下が含まれ msgid "Examples include:" msgstr "以下に例を示します。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -3035,8 +3039,8 @@ msgstr "親ノードが正常な状態になったときに実行します。" #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3044,11 +3048,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3089,8 +3093,8 @@ msgstr "保存せずに終了" msgid "Expand" msgstr "展開" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -3104,8 +3108,8 @@ msgstr "client_email、project_id、または private_key の少なくとも 1 msgid "Expiration" msgstr "有効期限" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3114,11 +3118,11 @@ msgstr "有効期限" msgid "Expires" msgstr "有効期限" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -3132,7 +3136,7 @@ msgstr "{0} の有効期限" msgid "Explanation" msgstr "説明" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "外部シークレット管理システム" @@ -3149,15 +3153,15 @@ msgid "FINISHED:" msgstr "終了日時:" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "ファクト" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3174,11 +3178,15 @@ msgid "Failed Hosts" msgstr "失敗したホスト" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "失敗したホスト" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "1 つ以上のワークフロー承認を承認できませんでした。" @@ -3190,16 +3198,17 @@ msgstr "ワークフローの承認を承認できませんでした。" msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "ロールの関連付けに失敗しました" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "関連付けに失敗しました。" @@ -3216,12 +3225,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "インベントリーソースの同期をキャンセルできませんでした。" -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "1 つ以上のジョブを取り消すことができませんでした。" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3255,24 +3264,24 @@ msgstr "アプリケーションを削除できませんでした。" msgid "Failed to delete credential." msgstr "認証情報を削除できませんでした。" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "グループ {0} を削除できませんでした。" -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "ホストを削除できませんでした。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "インベントリーソース {name} を削除できませんでした。" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "インベントリーを削除できませんでした。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "ジョブテンプレートを削除できませんでした。" @@ -3280,19 +3289,19 @@ msgstr "ジョブテンプレートを削除できませんでした。" msgid "Failed to delete notification." msgstr "通知を削除できませんでした。" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "1 つ以上のアプリケーションを削除できませんでした。" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "1 つ以上の認証情報タイプを削除できませんでした。" -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "1 つ以上の認証情報を削除できませんでした。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3300,20 +3309,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "1 つ以上のグループを削除できませんでした。" -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "1 つ以上のホストを削除できませんでした。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "1 つ以上のインスタンスグループを削除できませんでした。" -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: screens/Inventory/InventoryList/InventoryList.jsx:265 msgid "Failed to delete one or more inventories." msgstr "1 つ以上のインベントリーを削除できませんでした。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "1 つ以上のインベントリーリソースを削除できませんでした。" @@ -3321,31 +3330,31 @@ msgstr "1 つ以上のインベントリーリソースを削除できません msgid "Failed to delete one or more job templates." msgstr "1 つ以上のジョブテンプレートを削除できませんでした" -#: components/JobList/JobList.jsx:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "1 つ以上のジョブを削除できませんでした。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "1 つ以上の通知テンプレートを削除できませんでした。" -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "1 つ以上の組織を削除できませんでした。" -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "1 つ以上のプロジェクトを削除できませんでした。" -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "1 つ以上のスケジュールを削除できませんでした。" -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "1 つ以上のチームを削除できませんでした。" -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "1 つ以上のテンプレートを削除できませんでした。" @@ -3357,11 +3366,11 @@ msgstr "1 つ以上のトークンを削除できませんでした。" msgid "Failed to delete one or more user tokens." msgstr "1 つ以上のユーザートークンを削除できませんでした。" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "1 人以上のユーザーを削除できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "1 つ以上のワークフロー承認を削除できませんでした。" @@ -3377,16 +3386,16 @@ msgstr "プロジェクトを削除できませんでした。" msgid "Failed to delete role" msgstr "ロールを削除できませんでした。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "ロールを削除できませんでした。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "スケジュールを削除できませんでした。" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "スマートインベントリーを削除できませんでした。" @@ -3402,7 +3411,7 @@ msgstr "ユーザーを削除できませんでした。" msgid "Failed to delete workflow approval." msgstr "ワークフロー承認を削除できませんでした。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "ワークフロージョブテンプレートを削除できませんでした。" @@ -3411,7 +3420,7 @@ msgstr "ワークフロージョブテンプレートを削除できませんで msgid "Failed to delete {name}." msgstr "{name} を削除できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "1 つ以上のワークフロー承認を拒否できませんでした。" @@ -3420,7 +3429,7 @@ msgid "Failed to deny workflow approval." msgstr "ワークフローの承認を拒否できませんでした。" #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "1 つ以上のグループの関連付けを解除できませんでした。" @@ -3433,7 +3442,7 @@ msgstr "1 つ以上のホストの関連付けを解除できませんでした msgid "Failed to disassociate one or more instances." msgstr "1 つ以上のインスタンスの関連付けを解除できませんでした。" -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "1 つ以上のチームの関連付けを解除できませんでした。" @@ -3471,7 +3480,7 @@ msgstr "インベントリーソースを同期できませんでした。" msgid "Failed to sync project." msgstr "プロジェクトを同期できませんでした。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "一部またはすべてのインベントリーソースを同期できませんでした。" @@ -3514,7 +3523,7 @@ msgstr "失敗" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "False" @@ -3530,7 +3539,7 @@ msgstr "値を含むフィールド。" msgid "Field ends with value." msgstr "値で終了するフィールド。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "カスタムの Kubernetes または OpenShift Pod 仕様を渡すためのフィールド。" @@ -3546,7 +3555,7 @@ msgstr "値で開始するフィールド。" msgid "Fifth" msgstr "第 5" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3558,7 +3567,7 @@ msgstr "ファイルのアップロードが拒否されました。単一の .j msgid "File, directory or script" msgstr "ファイル、ディレクトリー、またはスクリプト" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "終了時間" @@ -3576,11 +3585,11 @@ msgstr "最初" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "名" @@ -3605,7 +3614,7 @@ msgstr "グラフを利用可能な画面サイズに合わせます" msgid "Float" msgstr "浮動" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3633,7 +3642,7 @@ msgstr "詳しい情報は以下の情報を参照してください:" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "フォーク" @@ -3660,30 +3669,30 @@ msgid "Friday" msgstr "金曜" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "Galaxy 認証情報" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy 認証情報は組織が所有している必要があります。" -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3732,7 +3741,7 @@ msgstr "GitHub 設定" msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3741,7 +3750,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3774,7 +3783,7 @@ msgid "Google OAuth2" msgstr "Google OAuth2" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "Grafana" @@ -3803,7 +3812,7 @@ msgstr "グループ" msgid "Group details" msgstr "グループの詳細" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "グループタイプ" @@ -3814,7 +3823,7 @@ msgstr "グループタイプ" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3845,7 +3854,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "Hipchat" @@ -3854,17 +3863,17 @@ msgstr "Hipchat" msgid "Host" msgstr "ホスト" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "ホスト設定キー" @@ -3876,11 +3885,11 @@ msgstr "ホスト数" msgid "Host Details" msgstr "ホストの詳細" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3893,27 +3902,27 @@ msgstr "ホストフィルター" msgid "Host Name" msgstr "ホスト名" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3935,10 +3944,10 @@ msgid "Host status information for this job is unavailable." msgstr "" #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3947,8 +3956,8 @@ msgstr "" #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3956,18 +3965,26 @@ msgstr "" msgid "Hosts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3977,9 +3994,9 @@ msgstr "時間" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "ID" @@ -4000,7 +4017,7 @@ msgid "ID of the panel (optional)" msgstr "パネル ID (オプション)" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "IRC" @@ -4081,7 +4098,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "チェックを付けると、以前は外部ソースにあり、現在は削除されているホストおよびグループが Tower インベントリーから削除されます。インベントリーソースで管理されていなかったホストおよびグループは、次に手動で作成したグループにプロモートされます。プロモート先となる、手動で作成したグループがない場合、ホストおよびグループは、インベントリーの「すべて」のデフォルトグループに残ります。" -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4098,7 +4115,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4113,7 +4130,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。" -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4123,11 +4140,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "有効な場合は、このワークフロージョブテンプレートの同時実行が許可されます。" -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4138,11 +4155,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "有効にすると、収集されたファクトが保存されるため、ホストレベルで表示できます。ファクトは永続化され、実行時にファクトキャッシュに挿入されます。" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4160,11 +4177,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4174,7 +4191,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4197,17 +4214,17 @@ msgstr "情報" msgid "Initiated By" msgstr "開始:" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "開始:" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "開始者 (ユーザー名)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "インジェクターの設定" @@ -4225,8 +4242,8 @@ msgstr "入力の設定" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "Insights 認証情報" @@ -4239,12 +4256,12 @@ msgstr "Insights 認証情報" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4268,14 +4285,14 @@ msgstr "インスタンスフィルター" msgid "Instance Group" msgstr "インスタンスグループ" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4302,7 +4319,7 @@ msgid "Instance groups" msgstr "インスタンスグループ" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4318,7 +4335,7 @@ msgstr "整数" msgid "Invalid email address" msgstr "無効なメールアドレス" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4332,11 +4349,11 @@ msgstr "無効なユーザー名またはパスワードです。やり直して #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4347,15 +4364,15 @@ msgstr "インベントリー" msgid "Inventories with sources cannot be copied" msgstr "ソースを含むインベントリーはコピーできません。" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4365,7 +4382,7 @@ msgstr "ソースを含むインベントリーはコピーできません。" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4403,14 +4420,14 @@ msgstr "インベントリーソース同期" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "インベントリーソース" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4423,7 +4440,7 @@ msgid "Inventory Update" msgstr "インベントリー更新" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "インベントリーファイル" @@ -4431,11 +4448,11 @@ msgstr "インベントリーファイル" msgid "Inventory not found." msgstr "インベントリーが見つかりません。" -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "インベントリーの同期" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "インベントリーの同期の失敗" @@ -4445,15 +4462,15 @@ msgstr "インベントリーの同期の失敗" #~ msgid "Isolated" #~ msgstr "分離" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4488,22 +4505,22 @@ msgstr "JSON:" msgid "January" msgstr "1 月" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "ジョブ" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "ジョブキャンセルエラー" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "ジョブ削除エラー" @@ -4513,7 +4530,7 @@ msgstr "ジョブスライス" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "ジョブスライス" @@ -4528,12 +4545,12 @@ msgstr "ジョブステータス" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "ジョブタグ" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4563,7 +4580,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4571,15 +4588,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "ジョブタイプ" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "ジョブステータス" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "ジョブステータスのグラフタブ" @@ -4589,10 +4606,10 @@ msgstr "ジョブステータスのグラフタブ" msgid "Job templates" msgstr "ジョブテンプレート" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4639,7 +4656,7 @@ msgstr "キー選択" msgid "Key typeahead" msgstr "キー先行入力" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "キーワード" @@ -4696,7 +4713,7 @@ msgstr "LDAP4" msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "ラベル名" @@ -4707,8 +4724,8 @@ msgstr "ラベル名" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "ラベル" @@ -4729,15 +4746,15 @@ msgstr "前回のログイン" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4754,15 +4771,15 @@ msgstr "最終更新日" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "姓" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "最終実行日時" @@ -4779,8 +4796,8 @@ msgstr "最後のジョブ" msgid "Last job run" msgstr "最後のジョブ実行" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4799,10 +4816,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "起動" @@ -4841,7 +4858,7 @@ msgstr "" msgid "Launched By" msgstr "起動者" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "起動者 (ユーザー名)" @@ -4853,11 +4870,11 @@ msgstr "起動者 (ユーザー名)" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4885,7 +4902,7 @@ msgstr "Less than or equal to の比較条件" #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4894,8 +4911,8 @@ msgstr "Less than or equal to の比較条件" #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "制限" @@ -4938,7 +4955,7 @@ msgid "Logout" msgstr "ログアウト" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "ルックアップモーダル" @@ -4975,12 +4992,12 @@ msgstr "マシンの認証情報" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5009,13 +5026,13 @@ msgstr "管理ジョブが見つかりません。" msgid "Management jobs" msgstr "管理ジョブ" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5026,12 +5043,12 @@ msgid "March" msgstr "3 月" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "Mattermost" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "最大ホスト数" @@ -5047,12 +5064,12 @@ msgstr "最大長" msgid "May" msgstr "5 月" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "メンバー" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "メタデータ" @@ -5132,38 +5149,39 @@ msgstr "修正済み" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5171,7 +5189,7 @@ msgid "Modified By (Username)" msgstr "変更者 (ユーザー名)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "変更者 (ユーザー名)" @@ -5232,50 +5250,50 @@ msgstr "複数の選択オプション" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5296,42 +5314,42 @@ msgstr "複数の選択オプション" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5339,62 +5357,63 @@ msgstr "複数の選択オプション" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5406,19 +5425,19 @@ msgstr "複数の選択オプション" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "名前" @@ -5442,7 +5461,7 @@ msgstr "未更新" msgid "Never expires" msgstr "期限切れなし" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "新規" @@ -5451,14 +5470,14 @@ msgstr "新規" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "次へ" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5468,12 +5487,12 @@ msgstr "次回実行日時" msgid "No" msgstr "不可" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5511,17 +5530,17 @@ msgstr "結果が見つかりません" msgid "No results found" msgstr "結果が見つかりません" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "Survey の質問は見つかりません。" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "{pluralizedItemName} は見つかりません" @@ -5547,7 +5566,7 @@ msgstr "なし (1回実行)" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "標準ユーザー" @@ -5576,7 +5595,7 @@ msgstr "" #~ msgstr "このグループに直接含まれるホストのみの関連付けを解除できることに注意してください。サブグループのホストの関連付けの解除については、それらのホストが属するサブグループのレベルで直接実行する必要があります。" #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5631,9 +5650,9 @@ msgstr "通知の色" msgid "Notification Template not found." msgstr "通知テンプレートテストは見つかりません。" -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5648,16 +5667,16 @@ msgstr "通知タイプ" msgid "Notification color" msgstr "通知の色" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "通知タイプ" @@ -5682,7 +5701,7 @@ msgid "November" msgstr "11 月" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "OK" @@ -5710,7 +5729,7 @@ msgstr "10 月" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "オフ" @@ -5728,7 +5747,7 @@ msgstr "オフ" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "オン" @@ -5762,12 +5781,12 @@ msgstr "グループ化のみ" msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "オプションの詳細" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5791,21 +5810,21 @@ msgstr "必要に応じて、ステータスの更新を Webhook サービスに #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "オプション" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5816,14 +5835,14 @@ msgstr "オプション" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5833,13 +5852,13 @@ msgstr "オプション" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "組織" @@ -5848,7 +5867,7 @@ msgstr "組織" msgid "Organization (Name)" msgstr "組織 (名前)" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "組織名" @@ -5858,9 +5877,9 @@ msgstr "組織が見つかりません。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5875,7 +5894,7 @@ msgstr "組織" msgid "Other prompts" msgstr "他のプロンプト" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5908,7 +5927,7 @@ msgid "PUT" msgstr "PUT" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "Pagerduty" @@ -5952,7 +5971,7 @@ msgstr "追加のコマンドライン変更を渡します。2 つの Ansible #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5960,7 +5979,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" @@ -5970,26 +5989,30 @@ msgstr "追加のコマンドライン変数を Playbook に渡します。こ #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "パスワード" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "過去 1 ヵ月" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "過去 2 週間" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "過去 1 週間" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "保留中" @@ -6018,14 +6041,14 @@ msgstr "プレイ" msgid "Play Count" msgstr "再生回数" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "Playbook" @@ -6033,7 +6056,7 @@ msgstr "Playbook" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -6043,25 +6066,25 @@ msgstr "" msgid "Playbook Directory" msgstr "Playbook ディレクトリー" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "Playbook 実行" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook 名" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "Playbook 実行" @@ -6069,12 +6092,12 @@ msgstr "Playbook 実行" msgid "Plays" msgstr "プレイ" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "Survey の質問を追加してください。" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "{pluralizedItemName} を追加してこのリストに入力してください。" @@ -6090,7 +6113,7 @@ msgstr "開始ボタンをクリックして開始してください。" msgid "Please enter a valid URL" msgstr "有効な URL を入力してください。" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "値を入力してください。" @@ -6102,9 +6125,13 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "1 から 31 までの日付を選択してください。" +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" +msgstr "" + #: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." -msgstr "インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。" +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。" #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." @@ -6114,7 +6141,7 @@ msgstr "開始日時より後の終了日時を選択してください。" msgid "Please select an organization before editing the host filter" msgstr "組織を選択してからホストフィルターを編集します。" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "Pod 仕様の上書き" @@ -6180,8 +6207,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "プレビュー" @@ -6189,7 +6216,7 @@ msgstr "プレビュー" msgid "Private key passphrase" msgstr "秘密鍵のパスフレーズ" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "権限昇格" @@ -6198,9 +6225,9 @@ msgid "Privilege escalation password" msgstr "権限昇格のパスワード" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6238,16 +6265,16 @@ msgstr "プロジェクトの更新" msgid "Project not found." msgstr "プロジェクトが見つかりません。" -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "プロジェクトの同期の失敗" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6269,7 +6296,7 @@ msgstr "プロンプト" msgid "Prompt Overrides" msgstr "プロンプトオーバーライド" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6289,8 +6316,8 @@ msgstr "プロンプト値" #~ msgid "Prompts" #~ msgstr "プロンプト" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6326,7 +6353,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "YAML または JSON のいずれかを使用してキーと値のペアを提供します。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6338,7 +6365,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6348,21 +6375,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "プロビジョニングコールバック URL" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "プロビジョニングコールバックの詳細" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "プロビジョニングコールバック" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6382,23 +6409,23 @@ msgstr "RADIUS 設定" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "読み込み" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "最近のジョブ" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "最近の求人リストタブ" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "最近のテンプレート" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "最近のテンプレートリストタブ" @@ -6410,10 +6437,10 @@ msgstr "受信者リスト" msgid "Recipient list" msgstr "受信者リスト" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" @@ -6426,7 +6453,7 @@ msgstr "Red Hat Satellite 6" msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6434,7 +6461,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "リダイレクト URI" @@ -6454,7 +6481,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6469,7 +6496,7 @@ msgid "Refresh Token" msgstr "トークンの更新" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "トークンの有効期限の更新" @@ -6477,7 +6504,7 @@ msgstr "トークンの有効期限の更新" msgid "Regions" msgstr "リージョン" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6493,8 +6520,8 @@ msgstr "関連するグループ" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "再起動" @@ -6522,10 +6549,10 @@ msgstr "再起動時" msgid "Relaunch using host parameters" msgstr "ホストパラメーターを使用した再起動" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "リモートアーカイブ" @@ -6548,7 +6575,7 @@ msgstr "リンクの削除" msgid "Remove Node" msgstr "ノードの削除" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "更新の実行前にローカルの変更を削除します。" @@ -6576,8 +6603,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6587,7 +6614,7 @@ msgid "Required" msgstr "必須" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6608,7 +6635,7 @@ msgstr "リソースが削除されました" #~ msgstr "リソースタイプ" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "リソース" @@ -6635,12 +6662,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "戻る" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6684,7 +6711,7 @@ msgid "Revert to factory default." msgstr "工場出荷時のデフォルトに戻します。" #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "リビジョン" @@ -6694,17 +6721,17 @@ msgid "Revision #" msgstr "リビジョン #" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "Rocket.Chat" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "ロール" @@ -6725,7 +6752,7 @@ msgstr "ロール" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "実行" @@ -6756,17 +6783,17 @@ msgstr "実行:" msgid "Run type" msgstr "実行タイプ" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "実行中" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "実行中のジョブ" @@ -6783,7 +6810,7 @@ msgstr "SAML" msgid "SAML settings" msgstr "SAML 設定" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "SCM 更新" @@ -6829,9 +6856,9 @@ msgstr "土曜" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6879,9 +6906,9 @@ msgstr "スケジュールは非アクティブです" msgid "Schedule is missing rrule" msgstr "スケジュールにルールがありません" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6901,7 +6928,7 @@ msgstr "スケジュール" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "範囲" @@ -6922,11 +6949,11 @@ msgid "Scroll previous" msgstr "前にスクロール" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "検索" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6955,18 +6982,18 @@ msgstr "左側のエラーを参照してください" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "選択" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "グループの選択" @@ -6999,7 +7026,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "適用するロールの選択" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "チームの選択" @@ -7015,7 +7042,7 @@ msgstr "ノードタイプの選択" msgid "Select a Resource Type" msgstr "リソースタイプの選択" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7029,11 +7056,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。" -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "認証情報タイプの選択" @@ -7058,7 +7085,7 @@ msgstr "モジュールの選択" msgid "Select a playbook" msgstr "Playbook の選択" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -7067,7 +7094,7 @@ msgid "Select a row to approve" msgstr "承認する行の選択" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "削除する行の選択" @@ -7079,7 +7106,7 @@ msgstr "拒否する行の選択" msgid "Select a row to disassociate" msgstr "関連付けを解除する行の選択" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -7087,7 +7114,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "このフィールドに有効な日時を選択" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7096,29 +7123,29 @@ msgstr "このフィールドに有効な日時を選択" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "このフィールドの値の選択" @@ -7126,12 +7153,12 @@ msgstr "このフィールドの値の選択" msgid "Select a webhook service." msgstr "Webhook サービスを選択します。" -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "すべて選択" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -7139,15 +7166,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "ワークフローのインベントリーを選択してください。このインベントリーが、インベントリーをプロンプトするすべてのジョブテンプレートノードに適用されます。" -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7180,31 +7207,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "プロジェクトのベースパスにあるデイレクトリーの一覧から選択します。ベースパスと Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "リストから項目の選択" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "ジョブタイプの選択" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "期間の選択" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "適用するロールの選択" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "ソースパスの選択" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -7217,17 +7249,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "このインベントリーが実行されるインスタンスグループを選択します。" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "この組織が実行されるインスタンスグループを選択します。" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "このトークンが属するアプリケーションを選択します。" @@ -7239,7 +7271,7 @@ msgstr "そのコマンドを実行するためにリモートホストへのア #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "このインベントリーソースの実行に使用するカスタム Python 仮想環境を選択します。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7251,12 +7283,12 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7267,7 +7299,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "このジョブで管理するホストが含まれるインベントリーを選択してください。" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7278,16 +7310,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "このソースで同期されるインベントリーファイルを選択します。ドロップダウンから選択するか、入力にファイルを指定できます。" -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "このホストが属するインベントリーを選択します。" -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "このジョブで実行される Playbook を選択してください。" -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7297,11 +7329,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "{0} の選択" @@ -7309,12 +7341,12 @@ msgstr "{0} の選択" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7327,7 +7359,7 @@ msgstr "{0} の選択" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7335,8 +7367,8 @@ msgstr "選択済み" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "選択したカテゴリー" @@ -7360,7 +7392,7 @@ msgstr "9 月" msgid "Service account JSON file" msgstr "サービスアカウント JSON ファイル" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "このフィールドに値を設定します" @@ -7373,7 +7405,7 @@ msgstr "データの保持日数を設定します。" msgid "Set preferences for data collection, logos, and logins" msgstr "データ収集、ロゴ、およびログイン情報の設定" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7381,7 +7413,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "インスタンスをオンラインまたはオフラインに設定します。オフラインの場合、ジョブはこのインスタンスに割り当てられません。" -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "クライアントデバイスのセキュリティーレベルに応じて「公開」または「機密」に設定します。" @@ -7415,8 +7447,8 @@ msgstr "名前の設定" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "設定" @@ -7430,11 +7462,11 @@ msgstr "表示" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "変更の表示" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "すべてのグループの表示" @@ -7452,7 +7484,7 @@ msgstr "" msgid "Show less" msgstr "簡易表示" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "root グループのみを表示" @@ -7508,7 +7540,7 @@ msgstr "簡易キー選択" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "スキップタグ" @@ -7521,7 +7553,7 @@ msgstr "スキップタグ" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7548,7 +7580,7 @@ msgid "Skipped" msgstr "スキップ済" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "Slack" @@ -7595,7 +7627,7 @@ msgstr "質問の順序の並べ替え" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "ソース" @@ -7610,7 +7642,7 @@ msgstr "ソース" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "ソースコントロールブランチ" @@ -7620,11 +7652,11 @@ msgstr "ソースコントロールブランチ/タグ/コミット" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "ソースコントロール認証情報" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "ソースコントロール認証情報タイプ" @@ -7639,18 +7671,18 @@ msgstr "ソースコントロールの Refspec" msgid "Source Control Type" msgstr "ソースコントロールのタイプ" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "ソースコントロールの URL" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7670,11 +7702,11 @@ msgstr "ソース変数" msgid "Source Workflow Job" msgstr "ソースワークフローのジョブ" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "ソースコントロールのブランチ" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "ソース詳細" @@ -7722,7 +7754,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "通知の色を指定します。使用できる色は、16 進数の色コード (例: #3af または #789abc) です。" -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "トークンのアクセスのスコープを指定" @@ -7753,7 +7785,7 @@ msgstr "標準出力タブ" msgid "Start" msgstr "開始" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "開始時間" @@ -7781,31 +7813,31 @@ msgid "Start sync source" msgstr "同期ソースの開始" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "開始" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "ステータス" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7815,7 +7847,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7827,12 +7859,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7840,11 +7872,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7852,18 +7884,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -7884,12 +7916,16 @@ msgstr "成功メッセージ" msgid "Success message body" msgstr "成功メッセージボディー" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "成功" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "クリップボードへのコピーに成功しました!" @@ -7903,14 +7939,14 @@ msgstr "日" msgid "Sunday" msgstr "日曜" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "Survey" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "Survey 一覧" @@ -7943,16 +7979,16 @@ msgstr "同期" msgid "Sync Project" msgstr "プロジェクトの同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "すべてを同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "すべてのソースの同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "同期エラー" @@ -7965,26 +8001,26 @@ msgstr "リビジョンの同期" msgid "System" msgstr "システム" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "システム管理者" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "システム監査者" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "システム管理者は、すべてのリソースに無制限にアクセスできます。" @@ -7996,7 +8032,7 @@ msgstr "TACACS+" msgid "TACACS+ settings" msgstr "TACACS+ 設定" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "タブ" @@ -8010,7 +8046,7 @@ msgstr "タブ" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8057,7 +8093,7 @@ msgstr "タスク" msgid "Task Count" msgstr "タスク数" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -8070,7 +8106,7 @@ msgid "Team" msgstr "チーム" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "チームロール" @@ -8081,19 +8117,19 @@ msgstr "チームが見つかりません。" #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8108,10 +8144,10 @@ msgstr "更新が見つかりません。" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8120,9 +8156,9 @@ msgstr "" msgid "Templates" msgstr "テンプレート" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "テスト" @@ -8160,15 +8196,19 @@ msgstr "テキストエリア" msgid "Textarea" msgstr "Textarea" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "The" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "ユーザーがこのアプリケーションのトークンを取得するために使用する必要のある付与タイプです。" @@ -8183,7 +8223,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "メール通知が、ホストへの到達を試行するのをやめてタイムアウトするまでの時間 (秒単位)。範囲は 1 から 120 秒です。" -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8205,11 +8245,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。" -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -8224,11 +8264,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "最初は全参照を取得します。2 番目は Github の Pull 要求の 62 番を取得します。この例では、ブランチは \"pull/62/head\" である必要があります。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8239,7 +8279,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "この組織で管理可能な最大ホスト数。デフォルト値は 0 で、管理可能な数に制限がありません。詳細は、Ansible ドキュメントを参照してください。" -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8285,7 +8325,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "Tower インスタンスグループは削除できません。" @@ -8355,17 +8395,21 @@ msgstr "これらの引数は、指定されたモジュールで使用されま msgid "Third" msgstr "第 3" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "このアクションにより、以下が削除されます。" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "このアクションにより、このユーザーのすべてのロールと選択したチームの関連付けが解除されます。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "このアクションにより、{0} から次のロールの関連付けが解除されます:" @@ -8373,7 +8417,7 @@ msgstr "このアクションにより、{0} から次のロールの関連付 msgid "This action will disassociate the following:" msgstr "このアクションにより、以下の関連付けが解除されます。" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8381,7 +8425,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8399,7 +8443,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8413,7 +8457,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8443,7 +8487,7 @@ msgstr "このフィールドは空白ではありません" msgid "This field must be a number" msgstr "このフィールドは数字でなければなりません" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "このフィールドは、{0} から {1} の間の値である必要があります" @@ -8460,7 +8504,7 @@ msgstr "このフィールドは正規表現である必要があります" msgid "This field must be an integer" msgstr "このフィールドは整数でなければなりません。" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "このフィールドは、{0} 文字以上にする必要があります" @@ -8472,9 +8516,10 @@ msgstr "このフィールドは、{min} 文字以上にする必要がありま msgid "This field must be greater than 0" msgstr "このフィールドは 0 より大きくなければなりません" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8484,7 +8529,7 @@ msgstr "このフィールドは空白であってはなりません" msgid "This field must not contain spaces" msgstr "このフィールドにはスペースを含めることはできません" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "このフィールドは、{0} 文字内にする必要があります" @@ -8504,11 +8549,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8520,7 +8565,7 @@ msgstr "クライアントシークレットが表示されるのはこれだけ msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "この時だけ唯一、トークンの値と、関連する更新トークンの値が表示されます。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8537,14 +8582,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "このプロジェクトは更新する必要があります" +#~ msgid "This project needs to be updated" +#~ msgstr "このプロジェクトは更新する必要があります" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "このスケジュールにはインベントリーがありません" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "このスケジュールには、必要な Survey 値がありません" @@ -8553,7 +8598,7 @@ msgstr "このスケジュールには、必要な Survey 値がありません" msgid "This step contains errors" msgstr "このステップにはエラーが含まれています" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。" @@ -8571,7 +8616,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "このワークフローには、ノードが構成されていません。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8584,14 +8629,14 @@ msgstr "木" msgid "Thursday" msgstr "木曜" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "時間" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8627,7 +8672,7 @@ msgstr "タイムアウト" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "タイムアウト" @@ -8726,11 +8771,11 @@ msgstr "トークン" msgid "Tools" msgstr "ツール" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "ジョブの合計" @@ -8744,7 +8789,7 @@ msgstr "ノードの合計" msgid "Total jobs" msgstr "ジョブの合計" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8753,8 +8798,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8764,7 +8809,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "True" @@ -8778,59 +8823,59 @@ msgid "Tuesday" msgstr "火曜" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "タイプ" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "タイプの詳細" @@ -8849,7 +8894,7 @@ msgstr "利用不可" msgid "Undo" msgstr "元に戻す" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8876,7 +8921,7 @@ msgstr "保存されていない変更モーダル" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "起動時のリビジョン更新" @@ -8914,11 +8959,11 @@ msgstr "Webhook キーの更新" msgid "Updating" msgstr "更新中" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8980,21 +9025,21 @@ msgid "User Interface settings" msgstr "ユーザーインターフェースの設定" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "ユーザーロール" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "ユーザータイプ" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -9024,27 +9069,27 @@ msgstr "ユーザートークン" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "ユーザー名" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9054,30 +9099,30 @@ msgstr "ユーザー" msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "変数" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -9089,7 +9134,7 @@ msgstr "Vault パスワード" msgid "Vault password | {credId}" msgstr "Vault パスワード | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -9103,11 +9148,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "詳細" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9359,7 +9404,7 @@ msgid "View smart inventory host details" msgstr "スマートインベントリーホストの詳細の表示" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "ビュー" @@ -9373,13 +9418,13 @@ msgstr "ビジュアライザー" msgid "WARNING:" msgstr "警告:" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "待機中" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "警告" @@ -9387,16 +9432,16 @@ msgstr "警告" msgid "Warning: Unsaved Changes" msgstr "警告: 変更が保存されていません" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "Webhook" @@ -9436,8 +9481,8 @@ msgstr "Webhook サービス" msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "Webhook の詳細" @@ -9478,7 +9523,7 @@ msgstr "週末" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "Ansible {brandName} へようこそ! サインインしてください。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9527,15 +9572,15 @@ msgid "Workflow Approval not found." msgstr "ワークフローの承認が見つかりません。" #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "ワークフローの承認" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9567,7 +9612,7 @@ msgstr "" msgid "Workflow Link" msgstr "ワークフローのリンク" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "ワークフローテンプレート" @@ -9629,7 +9674,7 @@ msgstr "ワークフローのタイムアウトメッセージ" msgid "Workflow timed out message body" msgstr "ワークフローのタイムアウトメッセージのボディー" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "書き込み" @@ -9653,11 +9698,11 @@ msgstr "次のワークフロー承認に基づいて行動することはでき msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "同じ Vault ID を持つ複数の Vault 認証情報を選択することはできません。これを行うと、同じ Vault ID を持つもう一方の選択が自動的に解除されます。" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "次のグループを削除する権限がありません: {itemsUnableToDelete}" @@ -9665,7 +9710,7 @@ msgstr "次のグループを削除する権限がありません: {itemsUnableT msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}" @@ -9703,12 +9748,12 @@ msgstr "ズームイン" msgid "Zoom Out" msgstr "ズームアウト" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "新規 Webhook キーは保存時に生成されます。" -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "新規 Webhook URL は保存時に生成されます。" @@ -9734,7 +9779,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "削除のキャンセル" @@ -9747,12 +9792,12 @@ msgid "command" msgstr "コマンド" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "削除の確認" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "関連付けの解除の確認" @@ -9782,16 +9827,16 @@ msgstr "関連付けの解除" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "編集" @@ -9952,8 +9997,8 @@ msgstr "冗長性の選択" msgid "social login" msgstr "ソーシャルログイン" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -9997,11 +10042,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -10009,31 +10054,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -10041,15 +10086,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -10137,8 +10182,12 @@ msgstr "" msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/nl/messages.po b/awx/ui_next/src/locales/nl/messages.po index 56f6130343..33c7840b4b 100644 --- a/awx/ui_next/src/locales/nl/messages.po +++ b/awx/ui_next/src/locales/nl/messages.po @@ -46,7 +46,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "" @@ -83,7 +83,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "" @@ -94,7 +94,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "" @@ -105,7 +105,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "" @@ -124,7 +124,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -150,7 +150,7 @@ msgid "About" msgstr "" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -169,7 +169,7 @@ msgid "Access" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" @@ -186,51 +186,51 @@ msgstr "" msgid "Action" msgstr "" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "" @@ -249,7 +249,7 @@ msgid "Activity" msgstr "" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "Activity Stream settings" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "" @@ -268,10 +268,6 @@ msgstr "" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" @@ -308,7 +304,7 @@ msgstr "" msgid "Add a new node between these two nodes" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "" @@ -320,15 +316,15 @@ msgstr "" msgid "Add existing host" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "" @@ -340,23 +336,23 @@ msgstr "" msgid "Add new host" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "" @@ -365,12 +361,12 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "" @@ -417,13 +413,17 @@ msgstr "" msgid "All" msgstr "" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "" @@ -432,7 +432,7 @@ msgstr "" msgid "Allow Provisioning Callbacks" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -442,7 +442,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "" @@ -503,10 +503,10 @@ msgstr "" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "" @@ -533,17 +533,17 @@ msgstr "" msgid "Application not found." msgstr "" -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "" @@ -623,7 +623,7 @@ msgstr "" msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" @@ -632,16 +632,17 @@ msgstr "" msgid "Arguments" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "" @@ -649,7 +650,7 @@ msgstr "" msgid "Association modal" msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" @@ -662,12 +663,12 @@ msgid "Authentication" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" @@ -687,7 +688,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -748,7 +749,7 @@ msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -832,7 +833,7 @@ msgstr "" msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -840,7 +841,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -851,7 +852,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "" @@ -875,38 +876,38 @@ msgstr "" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "" @@ -915,8 +916,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "" @@ -929,8 +930,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "" @@ -942,7 +943,7 @@ msgstr "" msgid "Cancel link removal" msgstr "" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "" @@ -980,12 +981,12 @@ msgstr "" #~ msgstr "" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1002,7 +1003,7 @@ msgstr "" #~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #~ msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "" @@ -1051,7 +1052,7 @@ msgid "Channel" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "" @@ -1067,7 +1068,7 @@ msgstr "" msgid "Choose a .json file" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "" @@ -1075,7 +1076,7 @@ msgstr "" msgid "Choose a Playbook Directory" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "" @@ -1084,7 +1085,7 @@ msgid "Choose a Webhook Service" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "" @@ -1092,7 +1093,7 @@ msgstr "" msgid "Choose a module" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "" @@ -1136,20 +1137,20 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1161,7 +1162,7 @@ msgstr "" msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" @@ -1195,7 +1196,7 @@ msgid "Client secret" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "" @@ -1204,7 +1205,7 @@ msgstr "" msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1216,7 +1217,7 @@ msgstr "" msgid "Collapse" msgstr "" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1239,11 +1240,11 @@ msgstr "" #~ msgid "Completed jobs" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "" @@ -1257,11 +1258,11 @@ msgstr "" msgid "Confirm Delete" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "" @@ -1277,7 +1278,7 @@ msgstr "" msgid "Confirm delete" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "" @@ -1297,7 +1298,7 @@ msgstr "" msgid "Confirm revert all" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1340,7 +1341,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1409,8 +1410,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "" @@ -1537,25 +1538,25 @@ msgstr "" msgid "Create user token" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1577,38 +1578,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1616,26 +1618,26 @@ msgid "Created By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "" @@ -1644,20 +1646,20 @@ msgstr "" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1675,11 +1677,11 @@ msgstr "" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1690,21 +1692,21 @@ msgstr "" #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "" @@ -1717,7 +1719,7 @@ msgstr "" msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "" @@ -1737,8 +1739,8 @@ msgstr "" msgid "Customize messages…" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "" @@ -1748,11 +1750,11 @@ msgid "DELETED" msgstr "" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "" @@ -1771,11 +1773,11 @@ msgstr "" msgid "Days of Data to Keep" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1789,7 +1791,7 @@ msgid "Default" msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1818,32 +1820,32 @@ msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1870,22 +1872,22 @@ msgstr "" #~ msgid "Delete Groups?" #~ msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "" @@ -1901,15 +1903,15 @@ msgstr "" msgid "Delete Project" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" @@ -1929,7 +1931,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "" @@ -1942,20 +1944,20 @@ msgstr "" msgid "Delete application" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "" @@ -1964,11 +1966,11 @@ msgstr "" msgid "Delete on Update" msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1998,16 +2000,16 @@ msgstr "" msgid "Deleted" msgstr "" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "" @@ -2032,75 +2034,76 @@ msgstr "" msgid "Deny" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "" @@ -2239,13 +2242,13 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "" @@ -2261,17 +2264,17 @@ msgstr "" msgid "Disassociate related group(s)?" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "" @@ -2279,7 +2282,7 @@ msgstr "" msgid "Disassociate?" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2294,8 +2297,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2306,7 +2309,7 @@ msgstr "" msgid "Download Output" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "" @@ -2331,7 +2334,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2341,23 +2344,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2384,17 +2387,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2589,9 +2592,9 @@ msgid "Elapsed time that the job ran" msgstr "" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "" @@ -2602,11 +2605,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "" @@ -2619,14 +2622,14 @@ msgstr "" msgid "Enable Privilege Escalation" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2651,7 +2654,7 @@ msgstr "" msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "" @@ -2678,7 +2681,7 @@ msgstr "" #~ "template." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2761,7 +2764,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" @@ -2828,11 +2831,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" @@ -2868,16 +2871,16 @@ msgstr "" #~ msgid "Environment" #~ msgstr "" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "" @@ -2902,91 +2905,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "" @@ -3002,7 +3006,7 @@ msgstr "" msgid "Event summary not available" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "" @@ -3026,7 +3030,7 @@ msgstr "" msgid "Examples include:" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -3044,8 +3048,8 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3053,11 +3057,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3098,8 +3102,8 @@ msgstr "" msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -3113,8 +3117,8 @@ msgstr "" msgid "Expiration" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3123,11 +3127,11 @@ msgstr "" msgid "Expires" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -3141,7 +3145,7 @@ msgstr "" msgid "Explanation" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "" @@ -3158,15 +3162,15 @@ msgid "FINISHED:" msgstr "" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3183,11 +3187,15 @@ msgid "Failed Hosts" msgstr "" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "" @@ -3199,16 +3207,17 @@ msgstr "" msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "" @@ -3225,12 +3234,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "" -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3264,24 +3273,24 @@ msgstr "" msgid "Failed to delete credential." msgstr "" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "" @@ -3289,19 +3298,19 @@ msgstr "" msgid "Failed to delete notification." msgstr "" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3309,20 +3318,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "" -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: screens/Inventory/InventoryList/InventoryList.jsx:265 msgid "Failed to delete one or more inventories." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "" @@ -3330,31 +3339,31 @@ msgstr "" msgid "Failed to delete one or more job templates." msgstr "" -#: components/JobList/JobList.jsx:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "" -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "" -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "" @@ -3366,11 +3375,11 @@ msgstr "" msgid "Failed to delete one or more user tokens." msgstr "" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "" @@ -3386,16 +3395,16 @@ msgstr "" msgid "Failed to delete role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "" @@ -3411,7 +3420,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "" @@ -3420,7 +3429,7 @@ msgstr "" msgid "Failed to delete {name}." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "" @@ -3429,7 +3438,7 @@ msgid "Failed to deny workflow approval." msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" @@ -3442,7 +3451,7 @@ msgstr "" msgid "Failed to disassociate one or more instances." msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "" @@ -3480,7 +3489,7 @@ msgstr "" msgid "Failed to sync project." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "" @@ -3523,7 +3532,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "" @@ -3539,7 +3548,7 @@ msgstr "" msgid "Field ends with value." msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" @@ -3555,7 +3564,7 @@ msgstr "" msgid "Fifth" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3567,7 +3576,7 @@ msgstr "" msgid "File, directory or script" msgstr "" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "" @@ -3585,11 +3594,11 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "" @@ -3614,7 +3623,7 @@ msgstr "" msgid "Float" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3642,7 +3651,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "" @@ -3669,30 +3678,30 @@ msgid "Friday" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3741,7 +3750,7 @@ msgstr "" msgid "GitLab" msgstr "" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3750,7 +3759,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3783,7 +3792,7 @@ msgid "Google OAuth2" msgstr "" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "" @@ -3812,7 +3821,7 @@ msgstr "" msgid "Group details" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "" @@ -3823,7 +3832,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3854,7 +3863,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "" @@ -3863,17 +3872,17 @@ msgstr "" msgid "Host" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "" @@ -3885,11 +3894,11 @@ msgstr "" msgid "Host Details" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3902,27 +3911,27 @@ msgstr "" msgid "Host Name" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3944,10 +3953,10 @@ msgid "Host status information for this job is unavailable." msgstr "" #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3956,8 +3965,8 @@ msgstr "" #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3965,18 +3974,26 @@ msgstr "" msgid "Hosts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3986,9 +4003,9 @@ msgstr "" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "" @@ -4009,7 +4026,7 @@ msgid "ID of the panel (optional)" msgstr "" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "" @@ -4090,7 +4107,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4107,7 +4124,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4122,7 +4139,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4132,11 +4149,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4147,11 +4164,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4169,11 +4186,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4183,7 +4200,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4206,17 +4223,17 @@ msgstr "" msgid "Initiated By" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "" @@ -4234,8 +4251,8 @@ msgstr "" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "" @@ -4248,12 +4265,12 @@ msgstr "" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4277,14 +4294,14 @@ msgstr "" msgid "Instance Group" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4311,7 +4328,7 @@ msgid "Instance groups" msgstr "" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4327,7 +4344,7 @@ msgstr "" msgid "Invalid email address" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4341,11 +4358,11 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4356,15 +4373,15 @@ msgstr "" msgid "Inventories with sources cannot be copied" msgstr "" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4374,7 +4391,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4412,14 +4429,14 @@ msgstr "" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4432,7 +4449,7 @@ msgid "Inventory Update" msgstr "" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "" @@ -4440,11 +4457,11 @@ msgstr "" msgid "Inventory not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "" @@ -4454,15 +4471,15 @@ msgstr "" #~ msgid "Isolated" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4497,22 +4514,22 @@ msgstr "" msgid "January" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "" @@ -4522,7 +4539,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "" @@ -4537,12 +4554,12 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4572,7 +4589,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4580,15 +4597,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "" @@ -4598,10 +4615,10 @@ msgstr "" msgid "Job templates" msgstr "" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4648,7 +4665,7 @@ msgstr "" msgid "Key typeahead" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "" @@ -4705,7 +4722,7 @@ msgstr "" msgid "LDAP5" msgstr "" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "" @@ -4716,8 +4733,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "" @@ -4738,15 +4755,15 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4763,15 +4780,15 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "" @@ -4788,8 +4805,8 @@ msgstr "" msgid "Last job run" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4808,10 +4825,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "" @@ -4850,7 +4867,7 @@ msgstr "" msgid "Launched By" msgstr "" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "" @@ -4862,11 +4879,11 @@ msgstr "" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4894,7 +4911,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4903,8 +4920,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "" @@ -4947,7 +4964,7 @@ msgid "Logout" msgstr "" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "" @@ -4984,12 +5001,12 @@ msgstr "" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5018,13 +5035,13 @@ msgstr "" msgid "Management jobs" msgstr "" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5035,12 +5052,12 @@ msgid "March" msgstr "" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "" @@ -5056,12 +5073,12 @@ msgstr "" msgid "May" msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "" @@ -5141,38 +5158,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5180,7 +5198,7 @@ msgid "Modified By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" @@ -5241,50 +5259,50 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5305,42 +5323,42 @@ msgstr "" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5348,62 +5366,63 @@ msgstr "" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5415,19 +5434,19 @@ msgstr "" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "" @@ -5451,7 +5470,7 @@ msgstr "" msgid "Never expires" msgstr "" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" @@ -5460,14 +5479,14 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5477,12 +5496,12 @@ msgstr "" msgid "No" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5520,17 +5539,17 @@ msgstr "" msgid "No results found" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5556,7 +5575,7 @@ msgstr "" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "" @@ -5585,7 +5604,7 @@ msgstr "" #~ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5640,9 +5659,9 @@ msgstr "" msgid "Notification Template not found." msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5657,16 +5676,16 @@ msgstr "" msgid "Notification color" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "" @@ -5691,7 +5710,7 @@ msgid "November" msgstr "" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" @@ -5719,7 +5738,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "" @@ -5737,7 +5756,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "" @@ -5771,12 +5790,12 @@ msgstr "" msgid "OpenStack" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5800,21 +5819,21 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5825,14 +5844,14 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5842,13 +5861,13 @@ msgstr "" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" @@ -5857,7 +5876,7 @@ msgstr "" msgid "Organization (Name)" msgstr "" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "" @@ -5867,9 +5886,9 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5884,7 +5903,7 @@ msgstr "" msgid "Other prompts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5917,7 +5936,7 @@ msgid "PUT" msgstr "" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "" @@ -5961,7 +5980,7 @@ msgstr "" #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5969,7 +5988,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "" @@ -5979,26 +5998,30 @@ msgstr "" #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" @@ -6027,14 +6050,14 @@ msgstr "" msgid "Play Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "" @@ -6042,7 +6065,7 @@ msgstr "" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -6052,25 +6075,25 @@ msgstr "" msgid "Playbook Directory" msgstr "" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "" @@ -6078,12 +6101,12 @@ msgstr "" msgid "Plays" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -6099,7 +6122,7 @@ msgstr "" msgid "Please enter a valid URL" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "" @@ -6111,10 +6134,14 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:748 +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "" + #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." msgstr "" @@ -6123,7 +6150,7 @@ msgstr "" msgid "Please select an organization before editing the host filter" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "" @@ -6189,8 +6216,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "" @@ -6198,7 +6225,7 @@ msgstr "" msgid "Private key passphrase" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "" @@ -6207,9 +6234,9 @@ msgid "Privilege escalation password" msgstr "" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6247,16 +6274,16 @@ msgstr "" msgid "Project not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6278,7 +6305,7 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6298,8 +6325,8 @@ msgstr "" #~ msgid "Prompts" #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6335,7 +6362,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6347,7 +6374,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6357,21 +6384,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6391,23 +6418,23 @@ msgstr "" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "" @@ -6419,10 +6446,10 @@ msgstr "" msgid "Recipient list" msgstr "" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" @@ -6435,7 +6462,7 @@ msgstr "" msgid "Red Hat Virtualization" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6443,7 +6470,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "" @@ -6463,7 +6490,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6478,7 +6505,7 @@ msgid "Refresh Token" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" @@ -6486,7 +6513,7 @@ msgstr "" msgid "Regions" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6502,8 +6529,8 @@ msgstr "" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "" @@ -6531,10 +6558,10 @@ msgstr "" msgid "Relaunch using host parameters" msgstr "" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6557,7 +6584,7 @@ msgstr "" msgid "Remove Node" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" @@ -6585,8 +6612,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6596,7 +6623,7 @@ msgid "Required" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6617,7 +6644,7 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "" @@ -6644,12 +6671,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6693,7 +6720,7 @@ msgid "Revert to factory default." msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "" @@ -6703,17 +6730,17 @@ msgid "Revision #" msgstr "" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "" @@ -6734,7 +6761,7 @@ msgstr "" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "" @@ -6765,17 +6792,17 @@ msgstr "" msgid "Run type" msgstr "" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "" @@ -6792,7 +6819,7 @@ msgstr "" msgid "SAML settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "" @@ -6838,9 +6865,9 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6888,9 +6915,9 @@ msgstr "" msgid "Schedule is missing rrule" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6910,7 +6937,7 @@ msgstr "" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "" @@ -6931,11 +6958,11 @@ msgid "Scroll previous" msgstr "" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6964,18 +6991,18 @@ msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" @@ -7008,7 +7035,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "" @@ -7024,7 +7051,7 @@ msgstr "" msgid "Select a Resource Type" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7038,11 +7065,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "" @@ -7067,7 +7094,7 @@ msgstr "" msgid "Select a playbook" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -7076,7 +7103,7 @@ msgid "Select a row to approve" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "" @@ -7088,7 +7115,7 @@ msgstr "" msgid "Select a row to disassociate" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -7096,7 +7123,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7105,29 +7132,29 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "" @@ -7135,12 +7162,12 @@ msgstr "" msgid "Select a webhook service." msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -7148,15 +7175,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7189,31 +7216,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -7226,17 +7258,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "" @@ -7248,7 +7280,7 @@ msgstr "" #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7260,12 +7292,12 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7276,7 +7308,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7287,16 +7319,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "" -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7306,11 +7338,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "" @@ -7318,12 +7350,12 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7336,7 +7368,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7344,8 +7376,8 @@ msgstr "" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "" @@ -7369,7 +7401,7 @@ msgstr "" msgid "Service account JSON file" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" @@ -7382,7 +7414,7 @@ msgstr "" msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7390,7 +7422,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" @@ -7424,8 +7456,8 @@ msgstr "" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" @@ -7439,11 +7471,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "" @@ -7461,7 +7493,7 @@ msgstr "" msgid "Show less" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "" @@ -7517,7 +7549,7 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "" @@ -7530,7 +7562,7 @@ msgstr "" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7557,7 +7589,7 @@ msgid "Skipped" msgstr "" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "" @@ -7604,7 +7636,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7619,7 +7651,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "" @@ -7629,11 +7661,11 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "" @@ -7648,18 +7680,18 @@ msgstr "" msgid "Source Control Type" msgstr "" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7679,11 +7711,11 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "" @@ -7731,7 +7763,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "" -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" @@ -7762,7 +7794,7 @@ msgstr "" msgid "Start" msgstr "" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "" @@ -7790,31 +7822,31 @@ msgid "Start sync source" msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7824,7 +7856,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7836,12 +7868,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7849,11 +7881,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7861,18 +7893,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -7893,12 +7925,16 @@ msgstr "" msgid "Success message body" msgstr "" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "" @@ -7912,14 +7948,14 @@ msgstr "" msgid "Sunday" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "" @@ -7952,16 +7988,16 @@ msgstr "" msgid "Sync Project" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "" @@ -7974,26 +8010,26 @@ msgstr "" msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "" @@ -8005,7 +8041,7 @@ msgstr "" msgid "TACACS+ settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" @@ -8019,7 +8055,7 @@ msgstr "" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8066,7 +8102,7 @@ msgstr "" msgid "Task Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -8079,7 +8115,7 @@ msgid "Team" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "" @@ -8090,19 +8126,19 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8117,10 +8153,10 @@ msgstr "" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8129,9 +8165,9 @@ msgstr "" msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "" @@ -8169,15 +8205,19 @@ msgstr "" msgid "Textarea" msgstr "" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" @@ -8192,7 +8232,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8214,11 +8254,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -8233,11 +8273,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8248,7 +8288,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8294,7 +8334,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "" @@ -8364,17 +8404,21 @@ msgstr "" msgid "Third" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "" @@ -8382,7 +8426,7 @@ msgstr "" msgid "This action will disassociate the following:" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8390,7 +8434,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8408,7 +8452,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8422,7 +8466,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8452,7 +8496,7 @@ msgstr "" msgid "This field must be a number" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" @@ -8469,7 +8513,7 @@ msgstr "" msgid "This field must be an integer" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "" @@ -8481,9 +8525,10 @@ msgstr "" msgid "This field must be greater than 0" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8493,7 +8538,7 @@ msgstr "" msgid "This field must not contain spaces" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "" @@ -8513,11 +8558,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8529,7 +8574,7 @@ msgstr "" msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8546,14 +8591,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "" +#~ msgid "This project needs to be updated" +#~ msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "" @@ -8562,7 +8607,7 @@ msgstr "" msgid "This step contains errors" msgstr "" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" @@ -8580,7 +8625,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8593,14 +8638,14 @@ msgstr "" msgid "Thursday" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8636,7 +8681,7 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "" @@ -8735,11 +8780,11 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "" @@ -8753,7 +8798,7 @@ msgstr "" msgid "Total jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8762,8 +8807,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8773,7 +8818,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "" @@ -8787,59 +8832,59 @@ msgid "Tuesday" msgstr "" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "" @@ -8858,7 +8903,7 @@ msgstr "" msgid "Undo" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8885,7 +8930,7 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "" @@ -8923,11 +8968,11 @@ msgstr "" msgid "Updating" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8989,21 +9034,21 @@ msgid "User Interface settings" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -9033,27 +9078,27 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9063,30 +9108,30 @@ msgstr "" msgid "VMware vCenter" msgstr "" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -9098,7 +9143,7 @@ msgstr "" msgid "Vault password | {credId}" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -9112,11 +9157,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9368,7 +9413,7 @@ msgid "View smart inventory host details" msgstr "" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "" @@ -9382,13 +9427,13 @@ msgstr "" msgid "WARNING:" msgstr "" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "" @@ -9396,16 +9441,16 @@ msgstr "" msgid "Warning: Unsaved Changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "" @@ -9445,8 +9490,8 @@ msgstr "" msgid "Webhook URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "" @@ -9487,7 +9532,7 @@ msgstr "" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9536,15 +9581,15 @@ msgid "Workflow Approval not found." msgstr "" #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9576,7 +9621,7 @@ msgstr "" msgid "Workflow Link" msgstr "" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" @@ -9638,7 +9683,7 @@ msgstr "" msgid "Workflow timed out message body" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "" @@ -9662,11 +9707,11 @@ msgstr "" msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" @@ -9674,7 +9719,7 @@ msgstr "" msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" @@ -9712,12 +9757,12 @@ msgstr "" msgid "Zoom Out" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "" @@ -9743,7 +9788,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "" @@ -9756,12 +9801,12 @@ msgid "command" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "" @@ -9791,16 +9836,16 @@ msgstr "" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "" @@ -9969,8 +10014,8 @@ msgstr "" msgid "social login" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -10014,11 +10059,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -10026,31 +10071,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -10058,15 +10103,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -10170,8 +10215,12 @@ msgstr "" #~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" #~ msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/zh/messages.po b/awx/ui_next/src/locales/zh/messages.po index 77db8c64b9..1dc06a8843 100644 --- a/awx/ui_next/src/locales/zh/messages.po +++ b/awx/ui_next/src/locales/zh/messages.po @@ -45,7 +45,7 @@ msgstr "/ (project root)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "0(普通)" @@ -66,7 +66,7 @@ msgstr "1(信息)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "1(详细)" @@ -82,7 +82,7 @@ msgstr "2(调试)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "2(更多详细内容)" @@ -93,7 +93,7 @@ msgstr "2(更多详细内容)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "3(调试)" @@ -104,7 +104,7 @@ msgstr "3(调试)" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "4(连接调试)" @@ -123,7 +123,7 @@ msgstr "" #~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." #~ msgstr "要获取的 refspec(传递至 Ansible git 模块)。此参数允许通过分支字段访问原本不可用的引用。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -149,7 +149,7 @@ msgid "About" msgstr "关于" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -168,7 +168,7 @@ msgid "Access" msgstr "访问" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "访问令牌过期" @@ -185,51 +185,51 @@ msgstr "帐户令牌" msgid "Action" msgstr "操作" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "操作" @@ -248,7 +248,7 @@ msgid "Activity" msgstr "活动" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "活动流" @@ -257,7 +257,7 @@ msgstr "活动流" msgid "Activity Stream settings" msgstr "活动流设置" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "活动流类型选择器" @@ -267,10 +267,6 @@ msgstr "操作者" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "添加" @@ -307,7 +303,7 @@ msgstr "添加新令牌" msgid "Add a new node between these two nodes" msgstr "在这两个节点间添加新节点" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "添加容器组" @@ -319,15 +315,15 @@ msgstr "添加现有组" msgid "Add existing host" msgstr "添加现有主机" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "添加实例组" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "添加清单" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "添加作业模板" @@ -339,23 +335,23 @@ msgstr "添加新组" msgid "Add new host" msgstr "添加新主机" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "添加资源类型" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "添加智能清单" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "添加团队权限" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "添加用户权限" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "添加工作流模板" @@ -364,12 +360,12 @@ msgstr "添加工作流模板" #~ msgstr "管理" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "管理" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "高级" @@ -416,13 +412,17 @@ msgstr "警报模式" msgid "All" msgstr "所有" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "作业作业类型" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "允许分支覆写" @@ -431,7 +431,7 @@ msgstr "允许分支覆写" msgid "Allow Provisioning Callbacks" msgstr "允许置备回调" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -441,7 +441,7 @@ msgstr "" #~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." #~ msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "允许的 URI 列表,以空格分开" @@ -502,10 +502,10 @@ msgstr "回答变量名称" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "应用程序" @@ -532,17 +532,17 @@ msgstr "应用程序名" msgid "Application not found." msgstr "未找到应用程序。" -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "应用程序" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "应用程序和令牌" @@ -622,7 +622,7 @@ msgstr "您确定要从 {1} 中删除访问 {0} 吗?这样做会影响团队 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "您确定要从 {username} 中删除 {0} 吗?" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "您确定要提交取消此作业的请求吗?" @@ -631,16 +631,17 @@ msgstr "您确定要提交取消此作业的请求吗?" msgid "Arguments" msgstr "参数" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "工件" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "关联" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "关联角色错误" @@ -648,7 +649,7 @@ msgstr "关联角色错误" msgid "Association modal" msgstr "关联模态" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "此字段至少选择一个值。" @@ -661,12 +662,12 @@ msgid "Authentication" msgstr "身份验证" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "授权代码过期" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "授权授予类型" @@ -686,7 +687,7 @@ msgstr "Azure AD 设置" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -747,7 +748,7 @@ msgstr "返回到调度" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -831,7 +832,7 @@ msgstr "" msgid "Brand Image" msgstr "品牌图像" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -839,7 +840,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -850,7 +851,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "缓存超时" @@ -874,38 +875,38 @@ msgstr "缓存超时(秒)" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "取消" @@ -914,8 +915,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "取消作业" @@ -928,8 +929,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "取消作业" @@ -941,7 +942,7 @@ msgstr "取消链路更改" msgid "Cancel link removal" msgstr "取消链接删除" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "取消查找" @@ -979,12 +980,12 @@ msgstr "" #~ msgstr "取消同步源" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -1001,7 +1002,7 @@ msgstr "" #~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #~ msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "容量" @@ -1050,7 +1051,7 @@ msgid "Channel" msgstr "频道" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "检查" @@ -1066,7 +1067,7 @@ msgstr "检查给定字段的值是否出现在提供的列表中;需要一个 msgid "Choose a .json file" msgstr "选择 .json 文件" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "选择通知类型" @@ -1074,7 +1075,7 @@ msgstr "选择通知类型" msgid "Choose a Playbook Directory" msgstr "选择 Playbook 目录" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "选择源控制类型" @@ -1083,7 +1084,7 @@ msgid "Choose a Webhook Service" msgstr "选择 Webhook 服务" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "选择作业类型" @@ -1091,7 +1092,7 @@ msgstr "选择作业类型" msgid "Choose a module" msgstr "选择模块" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "选择一个源" @@ -1135,20 +1136,20 @@ msgstr "选择将获得新角色的资源类型。例如,如果您想为一组 #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "清理" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "清除所有过滤器" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1160,7 +1161,7 @@ msgstr "点一个可用的节点来创建新链接。点击图形之外来取消 msgid "Click the Edit button below to reconfigure the node." msgstr "点击下面的编辑按钮重新配置节点。" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "点击这个按钮使用所选凭证和指定的输入验证到 secret 管理系统的连接。" @@ -1194,7 +1195,7 @@ msgid "Client secret" msgstr "客户端 secret" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "客户端类型" @@ -1203,7 +1204,7 @@ msgstr "客户端类型" msgid "Close" msgstr "关闭" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1215,7 +1216,7 @@ msgstr "云" msgid "Collapse" msgstr "折叠" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 @@ -1238,11 +1239,11 @@ msgstr "命令" #~ msgid "Completed jobs" #~ msgstr "完成的作业" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "并发作业" @@ -1256,11 +1257,11 @@ msgstr "" msgid "Confirm Delete" msgstr "确认删除" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "确认密码" @@ -1276,7 +1277,7 @@ msgstr "" msgid "Confirm delete" msgstr "确认删除" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "确认解除关联" @@ -1296,7 +1297,7 @@ msgstr "确认删除所有节点" msgid "Confirm revert all" msgstr "确认全部恢复" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1339,7 +1340,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1408,8 +1409,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "创建" @@ -1536,25 +1537,25 @@ msgstr "创建新源" msgid "Create user token" msgstr "创建用户令牌" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1576,38 +1577,39 @@ msgstr "已创建" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1615,26 +1617,26 @@ msgid "Created By (Username)" msgstr "创建者(用户名)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "创建者(用户名)" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "凭证" @@ -1643,20 +1645,20 @@ msgstr "凭证" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "凭证名称" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "凭证类型" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1674,11 +1676,11 @@ msgstr "凭证密码" #~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." #~ msgstr "与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1689,21 +1691,21 @@ msgstr "未找到凭证类型。" #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "凭证" @@ -1716,7 +1718,7 @@ msgstr "" msgid "Current page" msgstr "当前页" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "自定义 pod 规格" @@ -1736,8 +1738,8 @@ msgstr "" msgid "Customize messages…" msgstr "自定义消息…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "自定义 Pod 规格" @@ -1747,11 +1749,11 @@ msgid "DELETED" msgstr "已删除" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "仪表板" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "仪表板(所有活动)" @@ -1770,11 +1772,11 @@ msgstr "天" msgid "Days of Data to Keep" msgstr "要保留数据的天数" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1788,7 +1790,7 @@ msgid "Default" msgstr "默认" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1817,32 +1819,32 @@ msgstr "定义系统级的特性和功能" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1869,22 +1871,22 @@ msgstr "" #~ msgid "Delete Groups?" #~ msgstr "删除组?" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "删除主机" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "删除清单" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "删除作业" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "删除作业模板" @@ -1900,15 +1902,15 @@ msgstr "删除机构" msgid "Delete Project" msgstr "删除项目" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "删除问题" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "删除调度" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "删除问卷调查" @@ -1928,7 +1930,7 @@ msgstr "删除用户令牌" msgid "Delete Workflow Approval" msgstr "删除工作流批准" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "删除工作流作业模板" @@ -1941,20 +1943,20 @@ msgstr "删除所有节点" msgid "Delete application" msgstr "创建应用" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "删除凭证类型" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "删除错误" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "删除实例组" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "删除清单源" @@ -1963,11 +1965,11 @@ msgstr "删除清单源" msgid "Delete on Update" msgstr "更新时删除" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "删除智能清单" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1997,16 +1999,16 @@ msgstr "删除 {pluralizedItemName}?" msgid "Deleted" msgstr "已删除" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "删除错误" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "删除错误" @@ -2031,75 +2033,76 @@ msgstr "已拒绝 {0} - {1}" msgid "Deny" msgstr "拒绝" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "描述" @@ -2238,13 +2241,13 @@ msgstr "禁用 SSL 验证" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "解除关联" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "从主机中解除关联组?" @@ -2260,17 +2263,17 @@ msgstr "从实例组中解除关联实例?" msgid "Disassociate related group(s)?" msgstr "解除关联相关的组?" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "解除关联相关的团队?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "解除关联角色" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "解除关联角色!" @@ -2278,7 +2281,7 @@ msgstr "解除关联角色!" msgid "Disassociate?" msgstr "解除关联?" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2293,8 +2296,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2305,7 +2308,7 @@ msgstr "" msgid "Download Output" msgstr "下载输出" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "电子邮件" @@ -2330,7 +2333,7 @@ msgstr "" #~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." #~ msgstr "每次使用此清单运行作业时,请在执行作业前从所选源中刷新清单。" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2340,23 +2343,23 @@ msgstr "" #~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." #~ msgstr "每次使用此项目运行作业时,请在启动该作业前更新项目的修订。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2383,17 +2386,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2588,9 +2591,9 @@ msgid "Elapsed time that the job ran" msgstr "作业运行所经过的时间" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "电子邮件" @@ -2601,11 +2604,11 @@ msgstr "电子邮件选项" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "启用并发作业" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "启用事实缓存" @@ -2618,14 +2621,14 @@ msgstr "启用 HTTPS 证书验证" msgid "Enable Privilege Escalation" msgstr "启用权限升级" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "启用 Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "为此工作流作业模板启用 Webhook。" @@ -2650,7 +2653,7 @@ msgstr "启用权限升级" msgid "Enable simplified login for your {brandName} applications" msgstr "为您的 {brandName} 应用启用简化的登录" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "为此模板启用 Webhook。" @@ -2669,7 +2672,7 @@ msgstr "启用的值" msgid "Enabled Variable" msgstr "启用的变量" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2752,7 +2755,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档" @@ -2819,11 +2822,11 @@ msgstr "" #~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." #~ msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>Tower 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>aws_ec2 插件配置指南 。" @@ -2859,16 +2862,16 @@ msgstr "使用 JSON 或 YAML 语法输入变量。使用单选按钮在两者之 #~ msgid "Environment" #~ msgstr "环境" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "错误" @@ -2893,91 +2896,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "错误!" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "事件" @@ -2993,7 +2997,7 @@ msgstr "事件详情 modal" msgid "Event summary not available" msgstr "事件摘要不可用" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "事件" @@ -3017,7 +3021,7 @@ msgstr "Subversion SCM 源控制 URL 示例包括:" msgid "Examples include:" msgstr "示例包括::" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -3035,8 +3039,8 @@ msgstr "当父节点具有成功状态时执行。" #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3044,11 +3048,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -3089,8 +3093,8 @@ msgstr "不保存退出" msgid "Expand" msgstr "展开" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -3104,8 +3108,8 @@ msgstr "预期该文件中至少有一个 client_email、project_id 或 private_ msgid "Expiration" msgstr "过期" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -3114,11 +3118,11 @@ msgstr "过期" msgid "Expires" msgstr "过期" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -3132,7 +3136,7 @@ msgstr "过期于 {0}" msgid "Explanation" msgstr "解释" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "外部 Secret 管理系统" @@ -3149,15 +3153,15 @@ msgid "FINISHED:" msgstr "完成:" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "事实" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3174,11 +3178,15 @@ msgid "Failed Hosts" msgstr "失败的主机" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "失败的主机" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "批准一个或多个工作流批准失败。" @@ -3190,16 +3198,17 @@ msgstr "批准工作流批准失败。" msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "关联角色失败" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "关联失败。" @@ -3216,12 +3225,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "取消清单源同步失败。" -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "取消一个或多个作业失败。" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3255,24 +3264,24 @@ msgstr "删除应用程序失败。" msgid "Failed to delete credential." msgstr "删除凭证失败。" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "删除组 {0} 失败。" -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "删除主机失败。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "删除清单源 {name} 失败。" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "删除清单失败。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "删除作业模板失败。" @@ -3280,19 +3289,19 @@ msgstr "删除作业模板失败。" msgid "Failed to delete notification." msgstr "删除通知失败。" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "删除一个或多个应用程序失败。" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "删除一个或多个凭证类型失败。" -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "删除一个或多个凭证失败。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3300,20 +3309,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "删除一个或多个组失败。" -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "删除一个或多个主机失败。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "删除一个或多个实例组失败。" -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: screens/Inventory/InventoryList/InventoryList.jsx:265 msgid "Failed to delete one or more inventories." msgstr "删除一个或多个清单失败。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "删除一个或多个清单源失败。" @@ -3321,31 +3330,31 @@ msgstr "删除一个或多个清单源失败。" msgid "Failed to delete one or more job templates." msgstr "删除一个或多个作业模板失败。" -#: components/JobList/JobList.jsx:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "删除一个或多个作业失败。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "删除一个或多个通知模板失败。" -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "删除一个或多个机构失败。" -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "删除一个或多个项目失败。" -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "删除一个或多个调度失败。" -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "删除一个或多个团队失败。" -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "删除一个或多个模板失败。" @@ -3357,11 +3366,11 @@ msgstr "删除一个或多个令牌失败。" msgid "Failed to delete one or more user tokens." msgstr "删除一个或多个用户令牌失败。" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "删除一个或多个用户失败。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "无法删除一个或多个工作流批准。" @@ -3377,16 +3386,16 @@ msgstr "删除项目失败。" msgid "Failed to delete role" msgstr "删除角色失败" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "删除角色失败。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "删除调度失败。" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "删除智能清单失败。" @@ -3402,7 +3411,7 @@ msgstr "删除用户失败。" msgid "Failed to delete workflow approval." msgstr "删除工作流批准失败。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "删除工作流任务模板失败。" @@ -3411,7 +3420,7 @@ msgstr "删除工作流任务模板失败。" msgid "Failed to delete {name}." msgstr "删除 {name} 失败。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "拒绝一个或多个工作流批准失败。" @@ -3420,7 +3429,7 @@ msgid "Failed to deny workflow approval." msgstr "拒绝工作流批准失败。" #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "解除关联一个或多个组关联。" @@ -3433,7 +3442,7 @@ msgstr "解除关联一个或多个主机失败。" msgid "Failed to disassociate one or more instances." msgstr "解除关联一个或多个实例失败。" -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "解除关联一个或多个团队失败。" @@ -3471,7 +3480,7 @@ msgstr "同步清单源失败。" msgid "Failed to sync project." msgstr "同步项目失败。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "同步部分或所有清单源失败。" @@ -3514,7 +3523,7 @@ msgstr "失败" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "false" @@ -3530,7 +3539,7 @@ msgstr "字段包含值。" msgid "Field ends with value." msgstr "字段以值结尾。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "用于传递自定义 Kubernetes 或 OpenShift Pod 规格的字段。" @@ -3546,7 +3555,7 @@ msgstr "字段以值开头。" msgid "Fifth" msgstr "第五" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3558,7 +3567,7 @@ msgstr "上传文件被拒绝。请选择单个 .json 文件。" msgid "File, directory or script" msgstr "文件、目录或脚本" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "完成时间" @@ -3576,11 +3585,11 @@ msgstr "第一" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "名" @@ -3605,7 +3614,7 @@ msgstr "使图像与可用屏幕大小匹配" msgid "Float" msgstr "浮点值" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3633,7 +3642,7 @@ msgstr "有关详情请参阅" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "分叉" @@ -3660,30 +3669,30 @@ msgid "Friday" msgstr "周五" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "Galaxy 凭证" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy 凭证必须属于机构。" -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3732,7 +3741,7 @@ msgstr "GitHub 设置" msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3741,7 +3750,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3774,7 +3783,7 @@ msgid "Google OAuth2" msgstr "Google OAuth2" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "Grafana" @@ -3803,7 +3812,7 @@ msgstr "组" msgid "Group details" msgstr "组详情" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "组类型" @@ -3814,7 +3823,7 @@ msgstr "组类型" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3845,7 +3854,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "HipChat" @@ -3854,17 +3863,17 @@ msgstr "HipChat" msgid "Host" msgstr "主机" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "主机配置键" @@ -3876,11 +3885,11 @@ msgstr "主机计数" msgid "Host Details" msgstr "类型详情" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3893,27 +3902,27 @@ msgstr "主机过滤器" msgid "Host Name" msgstr "主机名" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3935,10 +3944,10 @@ msgid "Host status information for this job is unavailable." msgstr "此作业的主机状态信息不可用。" #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3947,8 +3956,8 @@ msgstr "此作业的主机状态信息不可用。" #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3956,18 +3965,26 @@ msgstr "此作业的主机状态信息不可用。" msgid "Hosts" msgstr "主机" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3977,9 +3994,9 @@ msgstr "小时" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "ID" @@ -4000,7 +4017,7 @@ msgid "ID of the panel (optional)" msgstr "面板 ID(可选)" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "IRC" @@ -4081,7 +4098,7 @@ msgstr "" #~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." #~ msgstr "如果选中,以前存在于外部源上的但现已被删除的任何主机和组都将从 Tower 清单中删除。不由清单源管理的主机和组将提升到下一个手动创建的组,如果没有手动创建组来提升它们,则它们将保留在清单的“all”默认组中。" -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4098,7 +4115,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4113,7 +4130,7 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。" -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4123,11 +4140,11 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "如果启用,将允许同时运行此工作流作业模板。" -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4138,11 +4155,11 @@ msgstr "" #~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." #~ msgstr "如果启用,这将存储收集的事实,以便在主机一级查看它们。事实在运行时会被持久化并注入事实缓存。" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4160,11 +4177,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4174,7 +4191,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4197,17 +4214,17 @@ msgstr "" msgid "Initiated By" msgstr "启动者" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "启动者" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "启动者(用户名)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "注入程序配置" @@ -4225,8 +4242,8 @@ msgstr "输入配置" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "Insights 凭证" @@ -4239,12 +4256,12 @@ msgstr "Insights 凭证" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4268,14 +4285,14 @@ msgstr "实例过滤器" msgid "Instance Group" msgstr "实例组" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4302,7 +4319,7 @@ msgid "Instance groups" msgstr "实例组" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4318,7 +4335,7 @@ msgstr "整数" msgid "Invalid email address" msgstr "无效的电子邮件地址" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4332,11 +4349,11 @@ msgstr "无效的用户名或密码。请重试。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4347,15 +4364,15 @@ msgstr "清单" msgid "Inventories with sources cannot be copied" msgstr "无法复制含有源的清单" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4365,7 +4382,7 @@ msgstr "无法复制含有源的清单" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4403,14 +4420,14 @@ msgstr "清单源同步" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "清单源" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4423,7 +4440,7 @@ msgid "Inventory Update" msgstr "清单更新" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "清单文件" @@ -4431,11 +4448,11 @@ msgstr "清单文件" msgid "Inventory not found." msgstr "未找到清单。" -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "清单同步" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "清单同步失败" @@ -4445,15 +4462,15 @@ msgstr "清单同步失败" #~ msgid "Isolated" #~ msgstr "已隔离" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4488,22 +4505,22 @@ msgstr "JSON:" msgid "January" msgstr "1 月" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "作业" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "作业取消错误" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "作业删除错误" @@ -4513,7 +4530,7 @@ msgstr "作业分片" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "作业分片" @@ -4528,12 +4545,12 @@ msgstr "作业状态" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "作业标签" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4563,7 +4580,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4571,15 +4588,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "作业类型" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "作业状态" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "作业状态图标签页" @@ -4589,10 +4606,10 @@ msgstr "作业状态图标签页" msgid "Job templates" msgstr "作业模板" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4639,7 +4656,7 @@ msgstr "键选择" msgid "Key typeahead" msgstr "键 typeahead" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "关键词" @@ -4696,7 +4713,7 @@ msgstr "LDAP4" msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "标签名称" @@ -4707,8 +4724,8 @@ msgstr "标签名称" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "标签" @@ -4729,15 +4746,15 @@ msgstr "最近登陆" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4754,15 +4771,15 @@ msgstr "最后修改" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "姓氏" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "最后运行" @@ -4779,8 +4796,8 @@ msgstr "最后作业" msgid "Last job run" msgstr "最后作业运行" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4799,10 +4816,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "启动" @@ -4841,7 +4858,7 @@ msgstr "" msgid "Launched By" msgstr "启动者" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "启动者(用户名)" @@ -4853,11 +4870,11 @@ msgstr "启动者(用户名)" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4885,7 +4902,7 @@ msgstr "小于或等于比较。" #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4894,8 +4911,8 @@ msgstr "小于或等于比较。" #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "限制" @@ -4938,7 +4955,7 @@ msgid "Logout" msgstr "退出" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "查找 modal" @@ -4975,12 +4992,12 @@ msgstr "机器凭证" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -5009,13 +5026,13 @@ msgstr "未找到管理作业。" msgid "Management jobs" msgstr "管理作业" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -5026,12 +5043,12 @@ msgid "March" msgstr "3 月" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "Mattermost" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "最大主机数" @@ -5047,12 +5064,12 @@ msgstr "最大长度" msgid "May" msgstr "5 月" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "成员" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "元数据" @@ -5132,38 +5149,39 @@ msgstr "修改" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -5171,7 +5189,7 @@ msgid "Modified By (Username)" msgstr "修改者(用户名)" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "修改者(用户名)" @@ -5232,50 +5250,50 @@ msgstr "多项选择选项" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5296,42 +5314,42 @@ msgstr "多项选择选项" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5339,62 +5357,63 @@ msgstr "多项选择选项" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5406,19 +5425,19 @@ msgstr "多项选择选项" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "名称" @@ -5442,7 +5461,7 @@ msgstr "永不更新" msgid "Never expires" msgstr "永不过期" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "新" @@ -5451,14 +5470,14 @@ msgstr "新" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "下一" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5468,12 +5487,12 @@ msgstr "下次运行" msgid "No" msgstr "否" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5511,17 +5530,17 @@ msgstr "未找到结果" msgid "No results found" msgstr "没有找到结果" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "没有找到问卷调查问题" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "未找到 {pluralizedItemName}。" @@ -5547,7 +5566,7 @@ msgstr "无(运行一次)" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "普通用户" @@ -5576,7 +5595,7 @@ msgstr "" #~ msgstr "请注意,只有直接属于此组的主机才能解除关联。子组中的主机必须与其所属的子组级别直接解除关联。" #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5631,9 +5650,9 @@ msgstr "通知颜色" msgid "Notification Template not found." msgstr "没有找到通知模板。" -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5648,16 +5667,16 @@ msgstr "通知类型" msgid "Notification color" msgstr "通知颜色" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "通知类型" @@ -5682,7 +5701,7 @@ msgid "November" msgstr "11月" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "确定" @@ -5710,7 +5729,7 @@ msgstr "10 月" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "关" @@ -5728,7 +5747,7 @@ msgstr "关" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "于" @@ -5762,12 +5781,12 @@ msgstr "唯一分组标准" msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "选项详情" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5791,21 +5810,21 @@ msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "选项" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5816,14 +5835,14 @@ msgstr "选项" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5833,13 +5852,13 @@ msgstr "选项" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "机构" @@ -5848,7 +5867,7 @@ msgstr "机构" msgid "Organization (Name)" msgstr "机构(名称)" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "机构名称" @@ -5858,9 +5877,9 @@ msgstr "未找到机构。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5875,7 +5894,7 @@ msgstr "机构" msgid "Other prompts" msgstr "其他提示" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5908,7 +5927,7 @@ msgid "PUT" msgstr "PUT" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "Pagerduty" @@ -5952,7 +5971,7 @@ msgstr "传递额外的命令行更改。有两个 ansible 命令行参数:" #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5960,7 +5979,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。示例语法请参阅 Ansible Tower 文档。" @@ -5970,26 +5989,30 @@ msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "密码" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "过去一个月" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "过去两周" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "过去一周" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "待处理" @@ -6018,14 +6041,14 @@ msgstr "Play" msgid "Play Count" msgstr "play 数量" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "Playbook" @@ -6033,7 +6056,7 @@ msgstr "Playbook" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -6043,25 +6066,25 @@ msgstr "" msgid "Playbook Directory" msgstr "Playbook 目录" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "Playbook 运行" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook 名称" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "Playbook 运行" @@ -6069,12 +6092,12 @@ msgstr "Playbook 运行" msgid "Plays" msgstr "Play" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "请添加问卷调查问题" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "请添加 {pluralizedItemName} 来填充此列表" @@ -6090,7 +6113,7 @@ msgstr "请点开始按钮开始。" msgid "Please enter a valid URL" msgstr "请输入有效的 URL。" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "请输入一个值。" @@ -6102,9 +6125,13 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "选择的日数字应介于 1 到 31 之间。" +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" +msgstr "" + #: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." -msgstr "请选择一个清单或者选中“启动时提示”选项。" +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "请选择一个清单或者选中“启动时提示”选项。" #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." @@ -6114,7 +6141,7 @@ msgstr "请选择一个比开始日期/时间晚的结束日期/时间。" msgid "Please select an organization before editing the host filter" msgstr "请在编辑主机过滤器前选择机构" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "Pod 规格覆写" @@ -6180,8 +6207,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "预览" @@ -6189,7 +6216,7 @@ msgstr "预览" msgid "Private key passphrase" msgstr "私钥密码" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "权限升级" @@ -6198,9 +6225,9 @@ msgid "Privilege escalation password" msgstr "权限升级密码" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6238,16 +6265,16 @@ msgstr "项目更新" msgid "Project not found." msgstr "未找到项目。" -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "项目同步失败" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6269,7 +6296,7 @@ msgstr "提示" msgid "Prompt Overrides" msgstr "提示覆盖" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6289,8 +6316,8 @@ msgstr "提示的值" #~ msgid "Prompts" #~ msgstr "提示" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6326,7 +6353,7 @@ msgstr "" #~ msgid "Provide key/value pairs using either YAML or JSON." #~ msgstr "使用 YAML 或 JSON 提供键/值对。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6338,7 +6365,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6348,21 +6375,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "部署回调 URL" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "置备回调详情" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "置备回调" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6382,23 +6409,23 @@ msgstr "RADIUS 设置" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "读取" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "最近的作业" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "最近的任务列表标签页" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "最近模板" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "最近模板列表标签页" @@ -6410,10 +6437,10 @@ msgstr "接收者列表" msgid "Recipient list" msgstr "接收者列表" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" @@ -6426,7 +6453,7 @@ msgstr "Red Hat Satellite 6" msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6434,7 +6461,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "重定向 URI" @@ -6454,7 +6481,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6469,7 +6496,7 @@ msgid "Refresh Token" msgstr "刷新令牌" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "刷新令牌过期" @@ -6477,7 +6504,7 @@ msgstr "刷新令牌过期" msgid "Regions" msgstr "区域" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6493,8 +6520,8 @@ msgstr "相关组" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "重新启动" @@ -6522,10 +6549,10 @@ msgstr "重新启动于" msgid "Relaunch using host parameters" msgstr "使用主机参数重新启动" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "远程归档" @@ -6548,7 +6575,7 @@ msgstr "删除链接" msgid "Remove Node" msgstr "删除节点" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "在进行更新前删除任何本地修改。" @@ -6576,8 +6603,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6587,7 +6614,7 @@ msgid "Required" msgstr "必需" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6608,7 +6635,7 @@ msgstr "资源已删除" #~ msgstr "资源类型" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "资源" @@ -6635,12 +6662,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "返回" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6684,7 +6711,7 @@ msgid "Revert to factory default." msgstr "恢复到工厂默认值。" #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "修订" @@ -6694,17 +6721,17 @@ msgid "Revision #" msgstr "修订号" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "Rocket.Chat" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "角色" @@ -6725,7 +6752,7 @@ msgstr "角色" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "运行" @@ -6756,17 +6783,17 @@ msgstr "运行于" msgid "Run type" msgstr "运行类型" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "运行中" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "运行作业" @@ -6783,7 +6810,7 @@ msgstr "SAML" msgid "SAML settings" msgstr "SAML 设置" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "SCM 更新" @@ -6829,9 +6856,9 @@ msgstr "周六" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6879,9 +6906,9 @@ msgstr "调度处于非活跃状态。" msgid "Schedule is missing rrule" msgstr "调度缺少规则" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6901,7 +6928,7 @@ msgstr "调度" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "范围" @@ -6922,11 +6949,11 @@ msgid "Scroll previous" msgstr "滚动到前一个" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "搜索" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6955,18 +6982,18 @@ msgstr "在左侧查看错误" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "选择" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "选择组" @@ -6999,7 +7026,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "选择要应用的角色" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "选择团队" @@ -7015,7 +7042,7 @@ msgstr "选择节点类型" msgid "Select a Resource Type" msgstr "选择资源类型" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7029,11 +7056,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点。" -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "选择一个凭证类型" @@ -7058,7 +7085,7 @@ msgstr "选择一个模块" msgid "Select a playbook" msgstr "选择一个 playbook" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -7067,7 +7094,7 @@ msgid "Select a row to approve" msgstr "选择要批准的行" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "选择要删除的行" @@ -7079,7 +7106,7 @@ msgstr "选择要拒绝的行" msgid "Select a row to disassociate" msgstr "选择要解除关联的行" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -7087,7 +7114,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "为此字段选择有效日期和时间" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -7096,29 +7123,29 @@ msgstr "为此字段选择有效日期和时间" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "为这个字段选择一个值" @@ -7126,12 +7153,12 @@ msgstr "为这个字段选择一个值" msgid "Select a webhook service." msgstr "选择 Webhook 服务。" -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "选择所有" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -7139,15 +7166,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "为工作流选择清单。此清单应用于提示清单的所有作业模板节点。" -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -7180,31 +7207,36 @@ msgstr "" #~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." #~ msgstr "从位于项目基本路径的目录列表中进行选择。基本路径和 playbook 目录一起提供了用于定位 playbook 的完整路径。" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "从列表中选择项" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "选择作业类型" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "选择周期" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "选择要应用的角色" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "选择源路径" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -7217,17 +7249,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "选择要运行此清单的实例组。" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "选择要运行此机构的实例组。" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "选择此令牌所属的应用程序。" @@ -7239,7 +7271,7 @@ msgstr "选择要在访问远程主机时用来运行命令的凭证。选择包 #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "选择要运行此清单源同步的自定义 Python 虚拟环境。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7251,12 +7283,12 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7267,7 +7299,7 @@ msgstr "" #~ msgid "Select the inventory containing the hosts you want this job to manage." #~ msgstr "选择包含此作业要管理的主机的清单。" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7278,16 +7310,16 @@ msgstr "" #~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." #~ msgstr "选择要由此源同步的清单文件。您可以从下拉列表中选择,或者在输入中输入一个文件。" -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "选择此主机要属于的清单。" -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "选择要由此作业执行的 playbook。" -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7297,11 +7329,11 @@ msgstr "" #~ msgid "Select the project containing the playbook you want this job to execute." #~ msgstr "选择包含此作业要执行的 playbook 的项目。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "选择 {0}" @@ -7309,12 +7341,12 @@ msgstr "选择 {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7327,7 +7359,7 @@ msgstr "选择 {0}" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7335,8 +7367,8 @@ msgstr "已选择" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "选择的类别" @@ -7360,7 +7392,7 @@ msgstr "9 月" msgid "Service account JSON file" msgstr "服务账户 JSON 文件" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "为这个字段设置值" @@ -7373,7 +7405,7 @@ msgstr "设置数据应保留的天数。" msgid "Set preferences for data collection, logos, and logins" msgstr "为数据收集、日志和登录设置偏好" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7381,7 +7413,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "设置实例在线或离线。如果离线,则不会将作业分配给此实例。" -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "根据客户端设备的安全情况,设置为公共或机密。" @@ -7415,8 +7447,8 @@ msgstr "设置名称" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "设置" @@ -7430,11 +7462,11 @@ msgstr "显示" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "显示更改" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "显示所有组" @@ -7452,7 +7484,7 @@ msgstr "" msgid "Show less" msgstr "显示更少" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "只显示 root 组" @@ -7508,7 +7540,7 @@ msgstr "简单键选择" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "跳过标签" @@ -7521,7 +7553,7 @@ msgstr "跳过标签" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7548,7 +7580,7 @@ msgid "Skipped" msgstr "跳过" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "Slack" @@ -7595,7 +7627,7 @@ msgstr "排序问题顺序" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "源" @@ -7610,7 +7642,7 @@ msgstr "源" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "源控制分支" @@ -7620,11 +7652,11 @@ msgstr "源控制分支/标签/提交" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "源控制凭证" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "源控制凭证类型" @@ -7639,18 +7671,18 @@ msgstr "源控制 Refspec" msgid "Source Control Type" msgstr "源控制类型" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "源控制 URL" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7670,11 +7702,11 @@ msgstr "源变量" msgid "Source Workflow Job" msgstr "源工作流作业" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "源控制分支" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "源详情" @@ -7722,7 +7754,7 @@ msgstr "" #~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." #~ msgstr "指定通知颜色。可接受的颜色为十六进制颜色代码(示例:#3af 或者 #789abc)。" -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "指定令牌访问的范围" @@ -7753,7 +7785,7 @@ msgstr "标准输出标签页" msgid "Start" msgstr "开始" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "开始时间" @@ -7781,31 +7813,31 @@ msgid "Start sync source" msgstr "启动同步源" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "已开始" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "状态" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7815,7 +7847,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7827,12 +7859,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7840,11 +7872,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7852,18 +7884,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -7884,12 +7916,16 @@ msgstr "成功信息" msgid "Success message body" msgstr "成功消息正文" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "成功" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "成功复制至剪贴板!" @@ -7903,14 +7939,14 @@ msgstr "周日" msgid "Sunday" msgstr "周日" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "问卷调查" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "问卷调查列表" @@ -7943,16 +7979,16 @@ msgstr "同步" msgid "Sync Project" msgstr "同步项目" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "全部同步" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "同步所有源" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "同步错误" @@ -7965,26 +8001,26 @@ msgstr "修订版本同步" msgid "System" msgstr "系统" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "系统管理员" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "系统审核员" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "系统管理员对所有资源的访问权限是不受限制的。" @@ -7996,7 +8032,7 @@ msgstr "TACACS+" msgid "TACACS+ settings" msgstr "TACACS+ 设置" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "制表符" @@ -8010,7 +8046,7 @@ msgstr "制表符" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8057,7 +8093,7 @@ msgstr "任务" msgid "Task Count" msgstr "任务计数" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -8070,7 +8106,7 @@ msgid "Team" msgstr "团队(team)" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "团队角色" @@ -8081,19 +8117,19 @@ msgstr "未找到团队" #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -8108,10 +8144,10 @@ msgstr "未找到模板" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -8120,9 +8156,9 @@ msgstr "" msgid "Templates" msgstr "模板" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "测试" @@ -8160,15 +8196,19 @@ msgstr "文本区" msgid "Textarea" msgstr "文本区" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "The" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "用户必须用来获取此应用令牌的授予类型" @@ -8183,7 +8223,7 @@ msgstr "" #~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." #~ msgstr "电子邮件通知停止尝试到达主机并超时之前所经过的时间(以秒为单位)。范围为 1 秒到 120 秒。" -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8205,11 +8245,11 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。" -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -8224,11 +8264,11 @@ msgstr "" #~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." #~ msgstr "第一个获取所有引用。第二个获取 Github 拉取请求号 62,在本示例中,分支需要为 \"pull/62/head\"。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8239,7 +8279,7 @@ msgstr "" #~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." #~ msgstr "允许由此机构管理的最大主机数。默认值为 0,表示无限制。请参阅 Ansible 文档以了解更多详情。" -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8285,7 +8325,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:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "tower 实例组不能被删除。" @@ -8355,17 +8395,21 @@ msgstr "这些参数与指定的模块一起使用。点击可以找到有关 {0 msgid "Third" msgstr "第三" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "此操作将删除以下内容:" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "此操作将从所选团队中解除该用户的所有角色。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "此操作将从 {0} 中解除以下角色关联:" @@ -8373,7 +8417,7 @@ msgstr "此操作将从 {0} 中解除以下角色关联:" msgid "This action will disassociate the following:" msgstr "此操作将解除以下关联:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8381,7 +8425,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8399,7 +8443,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8413,7 +8457,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8443,7 +8487,7 @@ msgstr "此字段不得为空白" msgid "This field must be a number" msgstr "此字段必须是数字" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "此字段必须是数字,且值介于 {0} 和 {1}" @@ -8460,7 +8504,7 @@ msgstr "此字段必须是正则表达式" msgid "This field must be an integer" msgstr "此字段必须是整数。" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "此字段必须至少为 {0} 个字符" @@ -8472,9 +8516,10 @@ msgstr "此字段必须至少为 {min} 个字符" msgid "This field must be greater than 0" msgstr "此字段必须大于 0" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8484,7 +8529,7 @@ msgstr "此字段不能为空" msgid "This field must not contain spaces" msgstr "此字段不得包含空格" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "此字段不能超过 {0} 个字符" @@ -8504,11 +8549,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8520,7 +8565,7 @@ msgstr "这是唯一显示客户端 secret 的时间。" msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "这是唯一显示令牌值和关联刷新令牌值的时间。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8537,14 +8582,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "此项目需要被更新" +#~ msgid "This project needs to be updated" +#~ msgstr "此项目需要被更新" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "此调度缺少清单" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "此调度缺少所需的调查值" @@ -8553,7 +8598,7 @@ msgstr "此调度缺少所需的调查值" msgid "This step contains errors" msgstr "这一步包含错误" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "此值与之前输入的密码不匹配。请确认该密码。" @@ -8571,7 +8616,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "此工作流没有配置任何节点。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8584,14 +8629,14 @@ msgstr "周四" msgid "Thursday" msgstr "周四" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "时间" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8627,7 +8672,7 @@ msgstr "超时" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "超时" @@ -8726,11 +8771,11 @@ msgstr "令牌" msgid "Tools" msgstr "工具" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "作业总数" @@ -8744,7 +8789,7 @@ msgstr "节点总数" msgid "Total jobs" msgstr "作业总数" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8753,8 +8798,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8764,7 +8809,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "True" @@ -8778,59 +8823,59 @@ msgid "Tuesday" msgstr "周二" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "类型" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "类型详情" @@ -8849,7 +8894,7 @@ msgstr "不可用" msgid "Undo" msgstr "撤消" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8876,7 +8921,7 @@ msgstr "未保存的修改 modal" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "启动时更新修订" @@ -8914,11 +8959,11 @@ msgstr "轮转 Webhook 密钥" msgid "Updating" msgstr "更新" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8980,21 +9025,21 @@ msgid "User Interface settings" msgstr "用户界面设置" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "用户角色" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "用户类型" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -9024,27 +9069,27 @@ msgstr "用户令牌" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "用户名" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -9054,30 +9099,30 @@ msgstr "用户" msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "变量" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -9089,7 +9134,7 @@ msgstr "Vault 密码" msgid "Vault password | {credId}" msgstr "Vault 密码 | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -9103,11 +9148,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "详细程度" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9359,7 +9404,7 @@ msgid "View smart inventory host details" msgstr "查看智能清单主机详情" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "视图" @@ -9373,13 +9418,13 @@ msgstr "Visualizer" msgid "WARNING:" msgstr "警告:" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "等待" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "警告" @@ -9387,16 +9432,16 @@ msgstr "警告" msgid "Warning: Unsaved Changes" msgstr "警告:未保存的更改" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "Webhook" @@ -9436,8 +9481,8 @@ msgstr "Webhook 服务" msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "Webhook 详情" @@ -9478,7 +9523,7 @@ msgstr "周末日" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "欢迎使用 Ansible {brandName}!请登录。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9527,15 +9572,15 @@ msgid "Workflow Approval not found." msgstr "未找到工作流批准。" #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "工作流批准" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9567,7 +9612,7 @@ msgstr "" msgid "Workflow Link" msgstr "工作流链接" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "工作流模板" @@ -9629,7 +9674,7 @@ msgstr "工作流超时信息" msgid "Workflow timed out message body" msgstr "工作流超时信息正文" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "写入" @@ -9653,11 +9698,11 @@ msgstr "您无法对以下工作流批准进行操作: {itemsUnableToApprove}" msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "您无法对以下工作流批准进行操作: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "您不能选择具有相同 vault ID 的多个 vault 凭证。这样做会自动取消选择具有相同的 vault ID 的另一个凭证。" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "您没有权限删除以下组: {itemsUnableToDelete}" @@ -9665,7 +9710,7 @@ msgstr "您没有权限删除以下组: {itemsUnableToDelete}" msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "您没有权限删除 {pluralizedItemName}:{itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "您没有权限删除 {pluralizedItemName}:{itemsUnableToDelete}" @@ -9703,12 +9748,12 @@ msgstr "放大" msgid "Zoom Out" msgstr "缩小" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "在保存时会生成一个新的 WEBHOOK 密钥" -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "在保存时会生成一个新的 WEBHOOK url" @@ -9734,7 +9779,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "取消删除" @@ -9747,12 +9792,12 @@ msgid "command" msgstr "命令" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "确认删除" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "确认解除关联" @@ -9782,16 +9827,16 @@ msgstr "解除关联" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "编辑" @@ -9952,8 +9997,8 @@ msgstr "选择详细程度" msgid "social login" msgstr "社交登录" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -9997,11 +10042,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -10009,31 +10054,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -10041,15 +10086,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -10137,8 +10182,12 @@ msgstr "" msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/zu/messages.po b/awx/ui_next/src/locales/zu/messages.po index 5e10dc53aa..dce3c2f36d 100644 --- a/awx/ui_next/src/locales/zu/messages.po +++ b/awx/ui_next/src/locales/zu/messages.po @@ -46,7 +46,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:186 +#: screens/Template/shared/JobTemplateForm.jsx:211 msgid "0 (Normal)" msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:187 +#: screens/Template/shared/JobTemplateForm.jsx:212 msgid "1 (Verbose)" msgstr "" @@ -83,7 +83,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:188 +#: screens/Template/shared/JobTemplateForm.jsx:213 msgid "2 (More Verbose)" msgstr "" @@ -94,7 +94,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.jsx:214 msgid "3 (Debug)" msgstr "" @@ -105,7 +105,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:190 +#: screens/Template/shared/JobTemplateForm.jsx:215 msgid "4 (Connection Debug)" msgstr "" @@ -120,7 +120,7 @@ msgid "" "the branch field not otherwise available." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:132 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide." msgstr "" @@ -146,7 +146,7 @@ msgid "About" msgstr "" #: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:177 +#: screens/ActivityStream/ActivityStream.jsx:174 #: screens/Credential/Credential.jsx:72 #: screens/Credential/Credentials.jsx:28 #: screens/Inventory/Inventories.jsx:58 @@ -165,7 +165,7 @@ msgid "Access" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" @@ -182,51 +182,51 @@ msgstr "" msgid "Action" msgstr "" -#: components/JobList/JobList.jsx:226 +#: components/JobList/JobList.jsx:218 #: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:172 +#: components/Schedule/ScheduleList/ScheduleList.jsx:164 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:230 +#: components/TemplateList/TemplateList.jsx:223 #: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:260 +#: screens/ActivityStream/ActivityStream.jsx:257 #: screens/ActivityStream/ActivityStreamListItem.jsx:49 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 +#: screens/Credential/CredentialList/CredentialList.jsx:149 #: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostList.jsx:165 #: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:246 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:148 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:180 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 -#: screens/Inventory/InventoryList/InventoryList.jsx:206 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:139 +#: screens/Inventory/InventoryList/InventoryList.jsx:199 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:223 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationList.jsx:155 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectList.jsx:172 #: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:151 #: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserList.jsx:168 #: screens/User/UserList/UserListItem.jsx:70 msgid "Actions" msgstr "" @@ -245,7 +245,7 @@ msgid "Activity" msgstr "" #: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.jsx:116 #: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" @@ -254,7 +254,7 @@ msgstr "" msgid "Activity Stream settings" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:119 msgid "Activity Stream type selector" msgstr "" @@ -264,10 +264,6 @@ msgstr "" #: components/AddDropDownButton/AddDropDownButton.jsx:39 #: components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" @@ -304,7 +300,7 @@ msgstr "" msgid "Add a new node between these two nodes" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 msgid "Add container group" msgstr "" @@ -316,15 +312,15 @@ msgstr "" msgid "Add existing host" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:156 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 msgid "Add instance group" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:134 +#: screens/Inventory/InventoryList/InventoryList.jsx:126 msgid "Add inventory" msgstr "" -#: components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:133 msgid "Add job template" msgstr "" @@ -336,33 +332,33 @@ msgstr "" msgid "Add new host" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 msgid "Add resource type" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:135 +#: screens/Inventory/InventoryList/InventoryList.jsx:127 msgid "Add smart inventory" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:203 msgid "Add team permissions" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:184 +#: screens/User/UserRoles/UserRolesList.jsx:201 msgid "Add user permissions" msgstr "" -#: components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:134 msgid "Add workflow template" msgstr "" #: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:185 msgid "Administration" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:86 -#: screens/Job/JobOutput/JobOutput.jsx:669 +#: components/DataListToolbar/DataListToolbar.jsx:85 +#: screens/Job/JobOutput/JobOutput.jsx:706 msgid "Advanced" msgstr "" @@ -404,13 +400,17 @@ msgstr "" msgid "All" msgstr "" -#: screens/Dashboard/Dashboard.jsx:213 +#: screens/Dashboard/DashboardGraph.jsx:134 msgid "All job types" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:159 +msgid "All jobs" +msgstr "" + #: components/PromptDetail/PromptProjectDetail.jsx:48 #: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 msgid "Allow Branch Override" msgstr "" @@ -419,13 +419,13 @@ msgstr "" msgid "Allow Provisioning Callbacks" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:116 +#: screens/Application/shared/ApplicationForm.jsx:117 msgid "Allowed URIs list, space separated" msgstr "" @@ -468,10 +468,10 @@ msgstr "" msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:65 +#: components/Lookup/ApplicationLookup.jsx:84 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 #: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:44 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Application" msgstr "" @@ -498,17 +498,17 @@ msgstr "" msgid "Application not found." msgstr "" -#: components/Lookup/ApplicationLookup.jsx:74 +#: components/Lookup/ApplicationLookup.jsx:96 #: routeConfig.jsx:135 #: screens/Application/Applications.jsx:25 #: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 #: util/getRelatedResourceDeleteDetails.js:215 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:205 +#: screens/ActivityStream/ActivityStream.jsx:202 msgid "Applications & Tokens" msgstr "" @@ -584,7 +584,7 @@ msgstr "" msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:807 +#: screens/Job/JobOutput/JobOutput.jsx:844 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" @@ -593,16 +593,17 @@ msgstr "" msgid "Arguments" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:349 +#: screens/Job/JobDetail/JobDetail.jsx:350 msgid "Artifacts" msgstr "" #: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:213 +#: screens/User/UserTeams/UserTeamList.jsx:215 msgid "Associate" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: screens/Team/TeamRoles/TeamRolesList.jsx:245 +#: screens/User/UserRoles/UserRolesList.jsx:243 msgid "Associate role error" msgstr "" @@ -610,7 +611,7 @@ msgstr "" msgid "Association modal" msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:135 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" @@ -623,12 +624,12 @@ msgid "Authentication" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:94 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:83 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" @@ -648,7 +649,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:285 #: components/LaunchPrompt/LaunchPrompt.jsx:133 #: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:70 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 @@ -709,7 +710,7 @@ msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 #: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" @@ -785,7 +786,7 @@ msgstr "" msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:169 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 msgid "Browse" msgstr "" @@ -793,7 +794,7 @@ msgstr "" #~ msgid "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" @@ -804,7 +805,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:102 #: components/PromptDetail/PromptProjectDetail.jsx:95 #: screens/Project/ProjectDetail/ProjectDetail.jsx:166 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 msgid "Cache Timeout" msgstr "" @@ -828,38 +829,38 @@ msgstr "" #: components/FormActionGroup/FormActionGroup.jsx:29 #: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 -#: components/Lookup/Lookup.jsx:150 +#: components/Lookup/Lookup.jsx:186 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 #: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialForm.jsx:346 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 +#: screens/Credential/shared/CredentialForm.jsx:342 +#: screens/Credential/shared/CredentialForm.jsx:347 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:100 #: screens/Credential/shared/ExternalTestModal.jsx:98 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:106 #: screens/Setting/shared/RevertAllAlert.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:32 #: screens/Setting/shared/RevertFormActionGroup.jsx:38 #: screens/Setting/shared/SharedFields.jsx:116 #: screens/Setting/shared/SharedFields.jsx:122 -#: screens/Team/TeamRoles/TeamRolesList.jsx:217 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 -#: screens/Template/Survey/SurveyList.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:229 +#: screens/Team/TeamRoles/TeamRolesList.jsx:232 +#: screens/Template/Survey/SurveyList.jsx:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 -#: screens/User/UserRoles/UserRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:216 +#: screens/User/UserRoles/UserRolesList.jsx:227 +#: screens/User/UserRoles/UserRolesList.jsx:230 msgid "Cancel" msgstr "" @@ -868,8 +869,8 @@ msgid "Cancel Inventory Source Sync" msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:49 -#: screens/Job/JobOutput/JobOutput.jsx:783 -#: screens/Job/JobOutput/JobOutput.jsx:784 +#: screens/Job/JobOutput/JobOutput.jsx:820 +#: screens/Job/JobOutput/JobOutput.jsx:821 msgid "Cancel Job" msgstr "" @@ -882,8 +883,8 @@ msgstr "" msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:791 -#: screens/Job/JobOutput/JobOutput.jsx:794 +#: screens/Job/JobOutput/JobOutput.jsx:828 +#: screens/Job/JobOutput/JobOutput.jsx:831 msgid "Cancel job" msgstr "" @@ -895,7 +896,7 @@ msgstr "" msgid "Cancel link removal" msgstr "" -#: components/Lookup/Lookup.jsx:148 +#: components/Lookup/Lookup.jsx:184 msgid "Cancel lookup" msgstr "" @@ -933,12 +934,12 @@ msgstr "" #~ msgstr "" #: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:387 +#: screens/Job/JobDetail/JobDetail.jsx:389 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:211 +#: components/JobList/JobList.jsx:203 #: components/Workflow/WorkflowNodeHelp.jsx:95 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 #: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 @@ -951,7 +952,7 @@ msgid "" "logging aggregator host and logging aggregator type." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 msgid "Capacity" msgstr "" @@ -996,7 +997,7 @@ msgid "Channel" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:181 +#: screens/Template/shared/JobTemplateForm.jsx:206 msgid "Check" msgstr "" @@ -1012,7 +1013,7 @@ msgstr "" msgid "Choose a .json file" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 msgid "Choose a Notification Type" msgstr "" @@ -1020,7 +1021,7 @@ msgstr "" msgid "Choose a Playbook Directory" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:219 +#: screens/Project/shared/ProjectForm.jsx:227 msgid "Choose a Source Control Type" msgstr "" @@ -1029,7 +1030,7 @@ msgid "Choose a Webhook Service" msgstr "" #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:174 +#: screens/Template/shared/JobTemplateForm.jsx:199 msgid "Choose a job type" msgstr "" @@ -1037,7 +1038,7 @@ msgstr "" msgid "Choose a module" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:143 +#: screens/Inventory/shared/InventorySourceForm.jsx:147 msgid "Choose a source" msgstr "" @@ -1077,20 +1078,20 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:40 #: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 msgid "Clean" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:65 -#: screens/Job/JobOutput/JobOutput.jsx:713 +#: components/DataListToolbar/DataListToolbar.jsx:64 +#: screens/Job/JobOutput/JobOutput.jsx:750 msgid "Clear all filters" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:258 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 msgid "Clear subscription selection" msgstr "" @@ -1102,7 +1103,7 @@ msgstr "" msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" @@ -1136,7 +1137,7 @@ msgid "Client secret" msgstr "" #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:125 +#: screens/Application/shared/ApplicationForm.jsx:126 msgid "Client type" msgstr "" @@ -1145,7 +1146,7 @@ msgstr "" msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:115 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 msgid "Close subscription modal" msgstr "" @@ -1157,18 +1158,18 @@ msgstr "" msgid "Collapse" msgstr "" -#: components/JobList/JobList.jsx:191 +#: components/JobList/JobList.jsx:183 #: components/JobList/JobListItem.jsx:36 #: screens/Job/JobDetail/JobDetail.jsx:81 #: screens/Job/JobOutput/HostEventModal.jsx:135 msgid "Command" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 msgid "Compliant" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:577 +#: screens/Template/shared/JobTemplateForm.jsx:602 msgid "Concurrent Jobs" msgstr "" @@ -1182,11 +1183,11 @@ msgstr "" msgid "Confirm Delete" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:268 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:91 +#: screens/User/shared/UserForm.jsx:87 msgid "Confirm Password" msgstr "" @@ -1202,7 +1203,7 @@ msgstr "" msgid "Confirm delete" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:204 +#: screens/User/UserRoles/UserRolesList.jsx:218 msgid "Confirm disassociate" msgstr "" @@ -1222,7 +1223,7 @@ msgstr "" msgid "Confirm revert all" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 msgid "Confirm selection" msgstr "" @@ -1261,7 +1262,7 @@ msgid "" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/JobTemplateForm.jsx:465 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1325,8 +1326,8 @@ msgstr "" #~ msgid "Copyright 2019 Red Hat, Inc." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:406 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Create" msgstr "" @@ -1453,25 +1454,25 @@ msgstr "" msgid "Create user token" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/ApplicationLookup.jsx:115 #: components/Lookup/HostFilterLookup.jsx:353 #: components/PromptDetail/PromptDetail.jsx:130 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:247 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 #: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 #: screens/Job/JobDetail/JobDetail.jsx:326 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:315 @@ -1493,38 +1494,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:158 #: components/AssociateModal/AssociateModal.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:91 -#: components/Lookup/CredentialLookup.jsx:153 -#: components/Lookup/InventoryLookup.jsx:114 -#: components/Lookup/InventoryLookup.jsx:167 -#: components/Lookup/MultiCredentialsLookup.jsx:184 -#: components/Lookup/OrganizationLookup.jsx:111 -#: components/Lookup/ProjectLookup.jsx:128 +#: components/LaunchPrompt/steps/InventoryStep.jsx:89 +#: components/Lookup/CredentialLookup.jsx:191 +#: components/Lookup/InventoryLookup.jsx:137 +#: components/Lookup/InventoryLookup.jsx:193 +#: components/Lookup/MultiCredentialsLookup.jsx:194 +#: components/Lookup/OrganizationLookup.jsx:133 +#: components/Lookup/ProjectLookup.jsx:151 #: components/NotificationList/NotificationList.jsx:206 -#: components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: components/TemplateList/TemplateList.jsx:215 +#: components/Schedule/ScheduleList/ScheduleList.jsx:190 +#: components/TemplateList/TemplateList.jsx:208 #: 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:132 +#: screens/Credential/CredentialList/CredentialList.jsx:137 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:156 +#: screens/Host/HostList/HostList.jsx:151 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 -#: screens/Inventory/InventoryList/InventoryList.jsx:184 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventoryList/InventoryList.jsx:176 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 -#: screens/Organization/OrganizationList/OrganizationList.jsx:145 +#: screens/Organization/OrganizationList/OrganizationList.jsx:140 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: screens/Project/ProjectList/ProjectList.jsx:165 -#: screens/Team/TeamList/TeamList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:160 +#: screens/Team/TeamList/TeamList.jsx:137 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 @@ -1532,26 +1534,26 @@ msgid "Created By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:40 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:42 #: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Credential" msgstr "" @@ -1560,20 +1562,20 @@ msgstr "" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:88 +#: components/Lookup/InstanceGroupsLookup.jsx:97 msgid "Credential Name" msgstr "" #: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:199 +#: screens/Credential/shared/CredentialForm.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:200 msgid "Credential Type" msgstr "" #: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:190 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/ActivityStream/ActivityStream.jsx:187 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:126 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:170 #: screens/CredentialType/CredentialTypes.jsx:13 #: screens/CredentialType/CredentialTypes.jsx:22 msgid "Credential Types" @@ -1587,11 +1589,11 @@ msgstr "" msgid "Credential passwords" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:57 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 msgid "Credential to authenticate with a protected container registry." msgstr "" @@ -1602,21 +1604,21 @@ msgstr "" #: components/JobList/JobListItem.jsx:212 #: components/LaunchPrompt/steps/CredentialsStep.jsx:193 #: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: components/Lookup/MultiCredentialsLookup.jsx:131 -#: components/Lookup/MultiCredentialsLookup.jsx:201 +#: components/Lookup/MultiCredentialsLookup.jsx:139 +#: components/Lookup/MultiCredentialsLookup.jsx:211 #: components/PromptDetail/PromptDetail.jsx:158 #: components/PromptDetail/PromptJobTemplateDetail.jsx:171 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 #: components/TemplateList/TemplateListItem.jsx:289 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 #: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Credential/CredentialList/CredentialList.jsx:175 +#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:178 #: screens/Credential/Credentials.jsx:13 #: screens/Credential/Credentials.jsx:23 #: screens/Job/JobDetail/JobDetail.jsx:264 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:275 -#: screens/Template/shared/JobTemplateForm.jsx:350 +#: screens/Template/shared/JobTemplateForm.jsx:374 #: util/getRelatedResourceDeleteDetails.js:97 msgid "Credentials" msgstr "" @@ -1629,7 +1631,7 @@ msgstr "" msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:79 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 msgid "Custom pod spec" msgstr "" @@ -1649,8 +1651,8 @@ msgstr "" msgid "Customize messages…" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 #: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 msgid "Customize pod specification" msgstr "" @@ -1660,11 +1662,11 @@ msgid "DELETED" msgstr "" #: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.jsx:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:145 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Dashboard (all activity)" msgstr "" @@ -1683,11 +1685,11 @@ msgstr "" msgid "Days of Data to Keep" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:661 +#: screens/Job/JobOutput/JobOutput.jsx:698 msgid "Debug" msgstr "" @@ -1701,7 +1703,7 @@ msgid "Default" msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:25 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 msgid "Default Execution Environment" msgstr "" @@ -1730,32 +1732,32 @@ msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:395 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:124 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:137 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:160 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:284 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:64 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:72 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:76 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:399 +#: screens/Job/JobDetail/JobDetail.jsx:401 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:352 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:168 #: screens/Project/ProjectDetail/ProjectDetail.jsx:227 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:77 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 #: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 -#: screens/Template/Survey/SurveyList.jsx:104 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/Survey/SurveyList.jsx:106 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1774,22 +1776,22 @@ msgstr "" msgid "Delete Execution Environment" msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:119 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:105 +#: screens/Host/HostDetail/HostDetail.jsx:124 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 msgid "Delete Host" msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 msgid "Delete Inventory" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:397 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 msgid "Delete Job" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:390 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 msgid "Delete Job Template" msgstr "" @@ -1805,15 +1807,15 @@ msgstr "" msgid "Delete Project" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:391 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 msgid "Delete Schedule" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:90 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" @@ -1833,7 +1835,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 msgid "Delete Workflow Job Template" msgstr "" @@ -1846,20 +1848,20 @@ msgstr "" msgid "Delete application" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 msgid "Delete credential type" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 msgid "Delete error" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:105 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 msgid "Delete instance group" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 msgid "Delete inventory source" msgstr "" @@ -1868,11 +1870,11 @@ msgstr "" msgid "Delete on Update" msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 msgid "Delete smart inventory" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1898,16 +1900,16 @@ msgstr "" msgid "Deleted" msgstr "" -#: components/TemplateList/TemplateList.jsx:275 -#: screens/Credential/CredentialList/CredentialList.jsx:191 -#: screens/Inventory/InventoryList/InventoryList.jsx:264 -#: screens/Project/ProjectList/ProjectList.jsx:235 +#: components/TemplateList/TemplateList.jsx:268 +#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Inventory/InventoryList/InventoryList.jsx:261 +#: screens/Project/ProjectList/ProjectList.jsx:230 msgid "Deletion Error" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Deletion error" msgstr "" @@ -1932,75 +1934,76 @@ msgstr "" msgid "Deny" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:663 +#: screens/Job/JobOutput/JobOutput.jsx:700 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:93 -#: components/Lookup/ApplicationLookup.jsx:83 -#: components/Lookup/ApplicationLookup.jsx:101 +#: components/HostForm/HostForm.jsx:92 +#: components/Lookup/ApplicationLookup.jsx:105 +#: components/Lookup/ApplicationLookup.jsx:123 #: components/NotificationList/NotificationList.jsx:186 #: components/PromptDetail/PromptDetail.jsx:110 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: components/Schedule/ScheduleList/ScheduleList.jsx:193 +#: components/Schedule/ScheduleList/ScheduleList.jsx:186 #: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:199 +#: components/TemplateList/TemplateList.jsx:192 #: components/TemplateList/TemplateListItem.jsx:227 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 #: screens/Application/shared/ApplicationForm.jsx:61 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:128 -#: screens/Credential/shared/CredentialForm.jsx:177 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialForm.jsx:173 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/CredentialType/shared/CredentialTypeForm.jsx:32 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:141 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 #: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:152 +#: screens/Host/HostList/HostList.jsx:147 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:124 +#: screens/Inventory/InventoryList/InventoryList.jsx:172 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:57 #: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:112 -#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/Inventory/shared/InventorySourceForm.jsx:116 +#: screens/Inventory/shared/SmartInventoryForm.jsx:60 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:49 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:144 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:141 -#: screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationList/OrganizationList.jsx:136 +#: screens/Organization/shared/OrganizationForm.jsx:65 #: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:142 +#: screens/Project/ProjectList/ProjectList.jsx:137 #: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Project/shared/ProjectForm.jsx:181 #: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:134 -#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/shared/TeamForm.jsx:37 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 -#: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 +#: screens/Template/shared/JobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:184 +#: screens/User/UserTeams/UserTeamList.jsx:188 #: screens/User/UserTeams/UserTeamListItem.jsx:32 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 #: screens/User/UserTokenList/UserTokenList.jsx:116 -#: screens/User/shared/UserTokenForm.jsx:57 +#: screens/User/shared/UserTokenForm.jsx:60 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:179 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 msgid "Description" msgstr "" @@ -2139,13 +2142,13 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:92 #: components/DisassociateButton/DisassociateButton.jsx:96 #: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:211 -#: screens/User/UserRoles/UserRolesList.jsx:207 +#: screens/Team/TeamRoles/TeamRolesList.jsx:223 +#: screens/User/UserRoles/UserRolesList.jsx:221 msgid "Disassociate" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:220 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 msgid "Disassociate group from host?" msgstr "" @@ -2161,17 +2164,17 @@ msgstr "" msgid "Disassociate related group(s)?" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:221 +#: screens/User/UserTeams/UserTeamList.jsx:223 msgid "Disassociate related team(s)?" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:198 -#: screens/User/UserRoles/UserRolesList.jsx:194 +#: screens/Team/TeamRoles/TeamRolesList.jsx:210 +#: screens/User/UserRoles/UserRolesList.jsx:208 msgid "Disassociate role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:201 -#: screens/User/UserRoles/UserRolesList.jsx:197 +#: screens/Team/TeamRoles/TeamRolesList.jsx:213 +#: screens/User/UserRoles/UserRolesList.jsx:211 msgid "Disassociate role!" msgstr "" @@ -2179,7 +2182,7 @@ msgstr "" msgid "Disassociate?" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:456 +#: screens/Template/shared/JobTemplateForm.jsx:480 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2190,8 +2193,8 @@ msgstr "" msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:112 -#: components/CodeEditor/VariablesDetail.jsx:118 +#: components/CodeEditor/VariablesDetail.jsx:121 +#: components/CodeEditor/VariablesDetail.jsx:127 #: components/CodeEditor/VariablesField.jsx:138 #: components/CodeEditor/VariablesField.jsx:144 msgid "Done" @@ -2202,7 +2205,7 @@ msgstr "" msgid "Download Output" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 msgid "E-mail" msgstr "" @@ -2222,29 +2225,29 @@ msgid "" "executing job tasks." msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:381 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:385 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:382 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:271 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:113 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/Host/HostDetail/HostDetail.jsx:118 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:53 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:99 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:269 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:127 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:58 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:65 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:104 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:150 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 @@ -2271,17 +2274,17 @@ msgstr "" #: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:173 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 #: screens/Setting/UI/UIDetail/UIDetail.jsx:100 #: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:366 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:368 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:234 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:236 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2476,9 +2479,9 @@ msgid "Elapsed time that the job ran" msgstr "" #: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 #: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:75 +#: screens/User/shared/UserForm.jsx:71 msgid "Email" msgstr "" @@ -2489,11 +2492,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 msgid "Enable Concurrent Jobs" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:584 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Enable Fact Storage" msgstr "" @@ -2506,14 +2509,14 @@ msgstr "" msgid "Enable Privilege Escalation" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:558 -#: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:583 +#: screens/Template/shared/JobTemplateForm.jsx:586 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2538,7 +2541,7 @@ msgstr "" msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/JobTemplateForm.jsx:589 msgid "Enable webhook for this template." msgstr "" @@ -2565,7 +2568,7 @@ msgstr "" #~ "template." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:544 +#: screens/Template/shared/JobTemplateForm.jsx:569 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {BrandName}\n" @@ -2640,7 +2643,7 @@ msgstr "" #~ "documentation for example syntax." #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:84 +#: screens/Inventory/shared/InventoryForm.jsx:93 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" @@ -2683,11 +2686,11 @@ msgid "" "Service\" in Twilio in the format +18005550199." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" @@ -2719,16 +2722,16 @@ msgstr "" msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" -#: components/JobList/JobList.jsx:210 +#: components/JobList/JobList.jsx:202 #: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:133 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:119 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:266 -#: screens/Job/JobOutput/JobOutput.jsx:666 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 +#: screens/Job/JobOutput/JobOutput.jsx:703 #: screens/Setting/shared/LoggingTestAlert.jsx:35 msgid "Error" msgstr "" @@ -2753,91 +2756,92 @@ msgstr "" #: components/DeleteButton/DeleteButton.jsx:57 #: components/HostToggle/HostToggle.jsx:70 #: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:281 -#: components/JobList/JobList.jsx:292 +#: components/JobList/JobList.jsx:274 +#: components/JobList/JobList.jsx:285 #: components/LaunchButton/LaunchButton.jsx:173 #: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 #: components/ResourceAccessList/ResourceAccessList.jsx:243 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 +#: components/Schedule/ScheduleList/ScheduleList.jsx:232 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 #: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:278 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: components/TemplateList/TemplateList.jsx:271 #: contexts/Config.jsx:67 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:193 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:194 +#: screens/Credential/CredentialList/CredentialList.jsx:197 #: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:128 +#: screens/Host/HostDetail/HostDetail.jsx:133 #: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:222 +#: screens/Host/HostList/HostList.jsx:217 #: screens/InstanceGroup/Instances/InstanceList.jsx:230 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:147 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:81 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:119 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:196 +#: screens/Inventory/InventoryList/InventoryList.jsx:262 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:174 #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:146 #: screens/Inventory/shared/InventorySourceSyncButton.jsx:51 #: screens/Login/Login.jsx:209 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:360 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:223 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:210 +#: screens/Organization/OrganizationList/OrganizationList.jsx:205 #: screens/Project/ProjectDetail/ProjectDetail.jsx:235 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:236 +#: screens/Project/ProjectList/ProjectList.jsx:231 #: screens/Project/shared/ProjectSyncButton.jsx:62 #: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:205 -#: screens/Team/TeamRoles/TeamRolesList.jsx:235 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Team/TeamList/TeamList.jsx:200 +#: screens/Team/TeamRoles/TeamRolesList.jsx:248 +#: screens/Team/TeamRoles/TeamRolesList.jsx:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:272 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:326 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:337 #: screens/User/UserDetail/UserDetail.jsx:107 -#: screens/User/UserList/UserList.jsx:191 -#: screens/User/UserRoles/UserRolesList.jsx:231 -#: screens/User/UserTeams/UserTeamList.jsx:264 +#: screens/User/UserList/UserList.jsx:193 +#: screens/User/UserRoles/UserRolesList.jsx:246 +#: screens/User/UserRoles/UserRolesList.jsx:257 +#: screens/User/UserTeams/UserTeamList.jsx:266 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 #: screens/User/UserTokenList/UserTokenList.jsx:191 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:264 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Error!" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:101 +#: components/CodeEditor/VariablesDetail.jsx:110 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStream.jsx:256 #: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:633 +#: screens/Job/JobOutput/JobOutput.jsx:670 msgid "Event" msgstr "" @@ -2853,7 +2857,7 @@ msgstr "" msgid "Event summary not available" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:228 +#: screens/ActivityStream/ActivityStream.jsx:225 msgid "Events" msgstr "" @@ -2877,7 +2881,7 @@ msgstr "" msgid "Examples include:" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:108 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 msgid "Examples:" msgstr "" @@ -2895,8 +2899,8 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:85 #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -2904,11 +2908,11 @@ msgstr "" #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 #: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 #: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:124 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 #: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 #: screens/Organization/Organization.jsx:127 @@ -2949,8 +2953,8 @@ msgstr "" msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:246 +#: components/CodeEditor/VariablesDetail.jsx:216 +#: components/CodeEditor/VariablesField.jsx:247 msgid "Expand input" msgstr "" @@ -2964,8 +2968,8 @@ msgstr "" msgid "Expiration" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:141 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:162 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:170 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 #: screens/User/UserTokenList/UserTokenList.jsx:130 #: screens/User/UserTokenList/UserTokenListItem.jsx:66 @@ -2974,11 +2978,11 @@ msgstr "" msgid "Expires" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 msgid "Expires on UTC" msgstr "" @@ -2992,7 +2996,7 @@ msgstr "" msgid "Explanation" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:114 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 msgid "External Secret Management System" msgstr "" @@ -3009,15 +3013,15 @@ msgid "FINISHED:" msgstr "" #: screens/Host/Host.jsx:57 -#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/HostFacts/HostFacts.jsx:40 #: screens/Host/Hosts.jsx:29 #: screens/Inventory/Inventories.jsx:69 #: screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:39 msgid "Facts" msgstr "" -#: components/JobList/JobList.jsx:209 +#: components/JobList/JobList.jsx:201 #: components/Workflow/WorkflowNodeHelp.jsx:89 #: screens/Dashboard/shared/ChartTooltip.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 @@ -3034,11 +3038,15 @@ msgid "Failed Hosts" msgstr "" #: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:135 +#: screens/Dashboard/Dashboard.jsx:87 msgid "Failed hosts" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:268 +#: screens/Dashboard/DashboardGraph.jsx:167 +msgid "Failed jobs" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 msgid "Failed to approve one or more workflow approval." msgstr "" @@ -3050,16 +3058,17 @@ msgstr "" msgid "Failed to assign roles properly" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: screens/Team/TeamRoles/TeamRolesList.jsx:251 +#: screens/User/UserRoles/UserRolesList.jsx:249 msgid "Failed to associate role" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:268 +#: screens/User/UserTeams/UserTeamList.jsx:270 msgid "Failed to associate." msgstr "" @@ -3076,12 +3085,12 @@ msgstr "" #~ msgid "Failed to cancel inventory source sync." #~ msgstr "" -#: components/JobList/JobList.jsx:295 +#: components/JobList/JobList.jsx:288 msgid "Failed to cancel one or more jobs." msgstr "" #: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobDetail/JobDetail.jsx:390 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 msgid "Failed to cancel {0}" msgstr "" @@ -3115,24 +3124,24 @@ msgstr "" msgid "Failed to delete credential." msgstr "" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:80 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 msgid "Failed to delete group {0}." msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:131 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:117 +#: screens/Host/HostDetail/HostDetail.jsx:136 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 msgid "Failed to delete host." msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 msgid "Failed to delete inventory source {name}." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:149 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 msgid "Failed to delete inventory." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 msgid "Failed to delete job template." msgstr "" @@ -3140,19 +3149,19 @@ msgstr "" msgid "Failed to delete notification." msgstr "" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 msgid "Failed to delete one or more applications." msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 msgid "Failed to delete one or more credential types." msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:197 +#: screens/Credential/CredentialList/CredentialList.jsx:200 msgid "Failed to delete one or more credentials." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 msgid "Failed to delete one or more execution environments" msgstr "" @@ -3160,20 +3169,20 @@ msgstr "" msgid "Failed to delete one or more groups." msgstr "" -#: screens/Host/HostList/HostList.jsx:225 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:183 +#: screens/Host/HostList/HostList.jsx:220 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 msgid "Failed to delete one or more hosts." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 msgid "Failed to delete one or more instance groups." msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:268 +#: screens/Inventory/InventoryList/InventoryList.jsx:265 msgid "Failed to delete one or more inventories." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 msgid "Failed to delete one or more inventory sources." msgstr "" @@ -3181,31 +3190,31 @@ msgstr "" msgid "Failed to delete one or more job templates." msgstr "" -#: components/JobList/JobList.jsx:284 +#: components/JobList/JobList.jsx:277 msgid "Failed to delete one or more jobs." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 msgid "Failed to delete one or more notification template." msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:213 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 msgid "Failed to delete one or more organizations." msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:239 +#: screens/Project/ProjectList/ProjectList.jsx:234 msgid "Failed to delete one or more projects." msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:242 +#: components/Schedule/ScheduleList/ScheduleList.jsx:235 msgid "Failed to delete one or more schedules." msgstr "" -#: screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:203 msgid "Failed to delete one or more teams." msgstr "" -#: components/TemplateList/TemplateList.jsx:281 +#: components/TemplateList/TemplateList.jsx:274 msgid "Failed to delete one or more templates." msgstr "" @@ -3217,11 +3226,11 @@ msgstr "" msgid "Failed to delete one or more user tokens." msgstr "" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.jsx:196 msgid "Failed to delete one or more users." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:256 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 msgid "Failed to delete one or more workflow approval." msgstr "" @@ -3237,16 +3246,16 @@ msgstr "" msgid "Failed to delete role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:238 -#: screens/User/UserRoles/UserRolesList.jsx:234 +#: screens/Team/TeamRoles/TeamRolesList.jsx:262 +#: screens/User/UserRoles/UserRolesList.jsx:260 msgid "Failed to delete role." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Failed to delete schedule." msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:172 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 msgid "Failed to delete smart inventory." msgstr "" @@ -3262,7 +3271,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 msgid "Failed to delete workflow job template." msgstr "" @@ -3271,7 +3280,7 @@ msgstr "" msgid "Failed to delete {name}." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:269 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 msgid "Failed to deny one or more workflow approval." msgstr "" @@ -3280,7 +3289,7 @@ msgid "Failed to deny workflow approval." msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" @@ -3293,7 +3302,7 @@ msgstr "" msgid "Failed to disassociate one or more instances." msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:269 +#: screens/User/UserTeams/UserTeamList.jsx:271 msgid "Failed to disassociate one or more teams." msgstr "" @@ -3331,7 +3340,7 @@ msgstr "" msgid "Failed to sync project." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 msgid "Failed to sync some or all inventory sources." msgstr "" @@ -3374,7 +3383,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "False" msgstr "" @@ -3390,7 +3399,7 @@ msgstr "" msgid "Field ends with value." msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:76 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" @@ -3406,7 +3415,7 @@ msgstr "" msgid "Fifth" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:650 +#: screens/Job/JobOutput/JobOutput.jsx:687 msgid "File Difference" msgstr "" @@ -3418,7 +3427,7 @@ msgstr "" msgid "File, directory or script" msgstr "" -#: components/JobList/JobList.jsx:225 +#: components/JobList/JobList.jsx:217 #: components/JobList/JobListItem.jsx:84 msgid "Finish Time" msgstr "" @@ -3436,11 +3445,11 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:143 #: components/ResourceAccessList/ResourceAccessList.jsx:132 #: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:123 -#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:165 #: screens/User/UserList/UserListItem.jsx:53 #: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:104 +#: screens/User/shared/UserForm.jsx:100 msgid "First Name" msgstr "" @@ -3465,7 +3474,7 @@ msgstr "" msgid "Float" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:229 +#: screens/Template/shared/JobTemplateForm.jsx:254 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3488,7 +3497,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:185 #: components/PromptDetail/PromptJobTemplateDetail.jsx:132 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:401 +#: screens/Template/shared/JobTemplateForm.jsx:425 msgid "Forks" msgstr "" @@ -3515,30 +3524,30 @@ msgid "Friday" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:103 +#: screens/Organization/shared/OrganizationForm.jsx:102 msgid "Galaxy Credentials" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:59 +#: screens/Credential/shared/CredentialForm.jsx:189 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:658 +#: screens/Job/JobOutput/JobOutput.jsx:695 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:233 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:113 +#: components/Lookup/ProjectLookup.jsx:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectList.jsx:145 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3587,7 +3596,7 @@ msgstr "" msgid "GitLab" msgstr "" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 msgid "Global Default Execution Environment" msgstr "" @@ -3596,7 +3605,7 @@ msgstr "" msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" @@ -3629,7 +3638,7 @@ msgid "Google OAuth2" msgstr "" #: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Grafana" msgstr "" @@ -3658,7 +3667,7 @@ msgstr "" msgid "Group details" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Group type" msgstr "" @@ -3669,7 +3678,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:72 #: screens/Inventory/Inventory.jsx:64 #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 @@ -3700,7 +3709,7 @@ msgid "Hide description" msgstr "" #: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Hipchat" msgstr "" @@ -3709,17 +3718,17 @@ msgstr "" msgid "Host" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:645 +#: screens/Job/JobOutput/JobOutput.jsx:682 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:681 msgid "Host Async OK" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:139 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:617 +#: screens/Template/shared/JobTemplateForm.jsx:642 msgid "Host Config Key" msgstr "" @@ -3731,11 +3740,11 @@ msgstr "" msgid "Host Details" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:636 +#: screens/Job/JobOutput/JobOutput.jsx:673 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:639 +#: screens/Job/JobOutput/JobOutput.jsx:676 msgid "Host Failure" msgstr "" @@ -3748,27 +3757,27 @@ msgstr "" msgid "Host Name" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:638 +#: screens/Job/JobOutput/JobOutput.jsx:675 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:643 +#: screens/Job/JobOutput/JobOutput.jsx:680 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:649 +#: screens/Job/JobOutput/JobOutput.jsx:686 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:640 +#: screens/Job/JobOutput/JobOutput.jsx:677 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:637 +#: screens/Job/JobOutput/JobOutput.jsx:674 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:641 +#: screens/Job/JobOutput/JobOutput.jsx:678 msgid "Host Unreachable" msgstr "" @@ -3790,10 +3799,10 @@ msgid "Host status information for this job is unavailable." msgstr "" #: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Dashboard/Dashboard.jsx:129 -#: screens/Host/HostList/HostList.jsx:142 -#: screens/Host/HostList/HostList.jsx:188 +#: screens/ActivityStream/ActivityStream.jsx:171 +#: screens/Dashboard/Dashboard.jsx:81 +#: screens/Host/HostList/HostList.jsx:137 +#: screens/Host/HostList/HostList.jsx:183 #: screens/Host/Hosts.jsx:15 #: screens/Host/Hosts.jsx:24 #: screens/Inventory/Inventories.jsx:63 @@ -3802,8 +3811,8 @@ msgstr "" #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:167 #: screens/Inventory/SmartInventory.jsx:71 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 @@ -3811,18 +3820,26 @@ msgstr "" msgid "Hosts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 msgid "Hosts remaining" msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "" +#~ msgid "Hosts used" +#~ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:161 msgid "Hour" @@ -3832,9 +3849,9 @@ msgstr "" #~ msgid "I agree to the End User License Agreement" #~ msgstr "" -#: components/JobList/JobList.jsx:177 +#: components/JobList/JobList.jsx:169 #: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/Team/TeamRoles/TeamRolesList.jsx:156 msgid "ID" msgstr "" @@ -3855,7 +3872,7 @@ msgid "ID of the panel (optional)" msgstr "" #: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "IRC" msgstr "" @@ -3926,7 +3943,7 @@ msgid "" "default group for the inventory." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:534 +#: screens/Template/shared/JobTemplateForm.jsx:559 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -3939,7 +3956,7 @@ msgid "" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:475 +#: screens/Template/shared/JobTemplateForm.jsx:499 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -3950,28 +3967,28 @@ msgstr "" msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:578 +#: screens/Template/shared/JobTemplateForm.jsx:603 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:585 +#: screens/Template/shared/JobTemplateForm.jsx:610 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" "injected into the fact cache at runtime." msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -3989,11 +4006,11 @@ msgid "" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 msgid "Image" @@ -4003,7 +4020,7 @@ msgstr "" #~ msgid "Image name" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:653 +#: screens/Job/JobOutput/JobOutput.jsx:690 msgid "Including File" msgstr "" @@ -4022,17 +4039,17 @@ msgstr "" msgid "Initiated By" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:247 -#: screens/ActivityStream/ActivityStream.jsx:257 +#: screens/ActivityStream/ActivityStream.jsx:244 +#: screens/ActivityStream/ActivityStream.jsx:254 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:237 +#: screens/ActivityStream/ActivityStream.jsx:234 msgid "Initiated by (username)" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 #: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Injector configuration" msgstr "" @@ -4050,8 +4067,8 @@ msgstr "" #~ msgid "Insights Analytics dashboard" #~ msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:71 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 msgid "Insights Credential" msgstr "" @@ -4064,12 +4081,12 @@ msgstr "" #~ msgid "Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" @@ -4093,14 +4110,14 @@ msgstr "" msgid "Instance Group" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:63 -#: components/Lookup/InstanceGroupsLookup.jsx:69 -#: components/Lookup/InstanceGroupsLookup.jsx:101 +#: components/Lookup/InstanceGroupsLookup.jsx:70 +#: components/Lookup/InstanceGroupsLookup.jsx:76 +#: components/Lookup/InstanceGroupsLookup.jsx:110 #: components/PromptDetail/PromptJobTemplateDetail.jsx:205 #: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:199 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:222 +#: screens/ActivityStream/ActivityStream.jsx:196 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:224 #: screens/InstanceGroup/InstanceGroups.jsx:16 #: screens/InstanceGroup/InstanceGroups.jsx:26 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 @@ -4127,7 +4144,7 @@ msgid "Instance groups" msgstr "" #: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 #: screens/InstanceGroup/InstanceGroups.jsx:31 #: screens/InstanceGroup/Instances/InstanceList.jsx:148 @@ -4143,7 +4160,7 @@ msgstr "" msgid "Invalid email address" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:125 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" @@ -4157,11 +4174,11 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 #: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/ActivityStream/ActivityStream.jsx:168 +#: screens/Dashboard/Dashboard.jsx:92 #: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:222 +#: screens/Inventory/InventoryList/InventoryList.jsx:163 +#: screens/Inventory/InventoryList/InventoryList.jsx:215 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:208 #: util/getRelatedResourceDeleteDetails.js:276 @@ -4172,15 +4189,15 @@ msgstr "" msgid "Inventories with sources cannot be copied" msgstr "" -#: components/HostForm/HostForm.jsx:28 +#: components/HostForm/HostForm.jsx:30 #: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/InventoryStep.jsx:105 #: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/InventoryLookup.jsx:85 -#: components/Lookup/InventoryLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:131 -#: components/Lookup/InventoryLookup.jsx:147 -#: components/Lookup/InventoryLookup.jsx:184 +#: components/Lookup/InventoryLookup.jsx:105 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:154 +#: components/Lookup/InventoryLookup.jsx:170 +#: components/Lookup/InventoryLookup.jsx:210 #: components/PromptDetail/PromptDetail.jsx:177 #: components/PromptDetail/PromptInventorySourceDetail.jsx:76 #: components/PromptDetail/PromptJobTemplateDetail.jsx:102 @@ -4190,7 +4207,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:253 #: components/TemplateList/TemplateListItem.jsx:263 #: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostList.jsx:164 #: screens/Host/HostList/HostListItem.jsx:33 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 #: screens/Inventory/InventoryList/InventoryListItem.jsx:94 @@ -4228,14 +4245,14 @@ msgstr "" msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:165 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 #: util/getRelatedResourceDeleteDetails.js:73 #: util/getRelatedResourceDeleteDetails.js:153 msgid "Inventory Sources" msgstr "" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.jsx:181 #: components/JobList/JobListItem.jsx:34 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 #: components/Workflow/WorkflowLegend.jsx:100 @@ -4248,7 +4265,7 @@ msgid "Inventory Update" msgstr "" #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 msgid "Inventory file" msgstr "" @@ -4256,11 +4273,11 @@ msgstr "" msgid "Inventory not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/DashboardGraph.jsx:137 msgid "Inventory sync" msgstr "" -#: screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:98 msgid "Inventory sync failures" msgstr "" @@ -4270,15 +4287,15 @@ msgstr "" #~ msgid "Isolated" #~ msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:647 +#: screens/Job/JobOutput/JobOutput.jsx:684 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:646 +#: screens/Job/JobOutput/JobOutput.jsx:683 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:648 +#: screens/Job/JobOutput/JobOutput.jsx:685 msgid "Item Skipped" msgstr "" @@ -4313,22 +4330,22 @@ msgstr "" msgid "January" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 msgid "Job" msgstr "" #: components/JobList/JobListItem.jsx:96 -#: screens/Job/JobDetail/JobDetail.jsx:386 -#: screens/Job/JobOutput/JobOutput.jsx:826 -#: screens/Job/JobOutput/JobOutput.jsx:827 +#: screens/Job/JobDetail/JobDetail.jsx:388 +#: screens/Job/JobOutput/JobOutput.jsx:863 +#: screens/Job/JobOutput/JobOutput.jsx:864 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 msgid "Job Cancel Error" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:408 -#: screens/Job/JobOutput/JobOutput.jsx:815 -#: screens/Job/JobOutput/JobOutput.jsx:816 +#: screens/Job/JobDetail/JobDetail.jsx:410 +#: screens/Job/JobOutput/JobOutput.jsx:852 +#: screens/Job/JobOutput/JobOutput.jsx:853 msgid "Job Delete Error" msgstr "" @@ -4338,7 +4355,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:138 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:455 +#: screens/Template/shared/JobTemplateForm.jsx:479 msgid "Job Slicing" msgstr "" @@ -4353,12 +4370,12 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 #: screens/Job/JobDetail/JobDetail.jsx:292 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:495 +#: screens/Template/shared/JobTemplateForm.jsx:520 msgid "Job Tags" msgstr "" #: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:206 +#: components/TemplateList/TemplateList.jsx:199 #: components/Workflow/WorkflowLegend.jsx:92 #: components/Workflow/WorkflowNodeHelp.jsx:47 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 @@ -4388,7 +4405,7 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:185 +#: components/JobList/JobList.jsx:177 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 @@ -4396,15 +4413,15 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:226 +#: screens/Template/shared/JobTemplateForm.jsx:251 msgid "Job Type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:124 msgid "Job status" msgstr "" -#: screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Job status graph tab" msgstr "" @@ -4414,10 +4431,10 @@ msgstr "" msgid "Job templates" msgstr "" -#: components/JobList/JobList.jsx:168 -#: components/JobList/JobList.jsx:243 +#: components/JobList/JobList.jsx:160 +#: components/JobList/JobList.jsx:236 #: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:148 +#: screens/ActivityStream/ActivityStream.jsx:145 #: screens/Dashboard/shared/LineChart.jsx:69 #: screens/Host/Host.jsx:67 #: screens/Host/Hosts.jsx:31 @@ -4464,7 +4481,7 @@ msgstr "" msgid "Key typeahead" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:232 +#: screens/ActivityStream/ActivityStream.jsx:229 msgid "Keyword" msgstr "" @@ -4521,7 +4538,7 @@ msgstr "" msgid "LDAP5" msgstr "" -#: components/JobList/JobList.jsx:181 +#: components/JobList/JobList.jsx:173 msgid "Label Name" msgstr "" @@ -4532,8 +4549,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 +#: screens/Template/shared/JobTemplateForm.jsx:392 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Labels" msgstr "" @@ -4554,15 +4571,15 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:282 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 #: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:43 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 #: screens/Job/JobDetail/JobDetail.jsx:330 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:320 @@ -4579,15 +4596,15 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:147 #: components/ResourceAccessList/ResourceAccessList.jsx:136 #: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:127 -#: screens/User/UserList/UserList.jsx:164 +#: screens/User/UserList/UserList.jsx:131 +#: screens/User/UserList/UserList.jsx:166 #: screens/User/UserList/UserListItem.jsx:61 #: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:110 +#: screens/User/shared/UserForm.jsx:106 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:229 +#: components/TemplateList/TemplateList.jsx:222 #: components/TemplateList/TemplateListItem.jsx:153 msgid "Last Ran" msgstr "" @@ -4604,8 +4621,8 @@ msgstr "" msgid "Last job run" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:257 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:137 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 #: screens/Project/ProjectList/ProjectListItem.jsx:257 msgid "Last modified" @@ -4624,10 +4641,10 @@ msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:35 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 msgid "Launch" msgstr "" @@ -4666,7 +4683,7 @@ msgstr "" msgid "Launched By" msgstr "" -#: components/JobList/JobList.jsx:197 +#: components/JobList/JobList.jsx:189 msgid "Launched By (Username)" msgstr "" @@ -4678,11 +4695,11 @@ msgstr "" #~ msgid "Learn more about Insights for Ansible" #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" @@ -4710,7 +4727,7 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:164 #: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:215 +#: components/JobList/JobList.jsx:207 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 #: components/PromptDetail/PromptDetail.jsx:186 #: components/PromptDetail/PromptJobTemplateDetail.jsx:133 @@ -4719,8 +4736,8 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.jsx:441 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 msgid "Limit" msgstr "" @@ -4763,7 +4780,7 @@ msgid "Logout" msgstr "" #: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:130 +#: components/Lookup/Lookup.jsx:166 msgid "Lookup modal" msgstr "" @@ -4800,12 +4817,12 @@ msgstr "" msgid "Managed by Tower" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:140 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:159 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.jsx:184 #: components/JobList/JobListItem.jsx:37 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 #: screens/Job/JobDetail/JobDetail.jsx:82 @@ -4834,13 +4851,13 @@ msgstr "" msgid "Management jobs" msgstr "" -#: components/Lookup/ProjectLookup.jsx:112 +#: components/Lookup/ProjectLookup.jsx:135 #: components/PromptDetail/PromptProjectDetail.jsx:76 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:149 +#: screens/Project/ProjectList/ProjectList.jsx:144 #: screens/Project/ProjectList/ProjectListItem.jsx:154 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" @@ -4851,12 +4868,12 @@ msgid "March" msgstr "" #: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Mattermost" msgstr "" #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:74 +#: screens/Organization/shared/OrganizationForm.jsx:72 msgid "Max Hosts" msgstr "" @@ -4872,12 +4889,12 @@ msgstr "" msgid "May" msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationList.jsx:153 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 msgid "Metadata" msgstr "" @@ -4949,38 +4966,39 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:162 #: components/AssociateModal/AssociateModal.jsx:149 #: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:95 -#: components/Lookup/CredentialLookup.jsx:157 -#: components/Lookup/InventoryLookup.jsx:118 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/MultiCredentialsLookup.jsx:188 -#: components/Lookup/OrganizationLookup.jsx:115 -#: components/Lookup/ProjectLookup.jsx:124 +#: components/LaunchPrompt/steps/InventoryStep.jsx:93 +#: components/Lookup/CredentialLookup.jsx:195 +#: components/Lookup/InventoryLookup.jsx:141 +#: components/Lookup/InventoryLookup.jsx:197 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/Lookup/OrganizationLookup.jsx:137 +#: components/Lookup/ProjectLookup.jsx:147 #: components/NotificationList/NotificationList.jsx:210 -#: components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: components/TemplateList/TemplateList.jsx:219 +#: components/Schedule/ScheduleList/ScheduleList.jsx:194 +#: components/TemplateList/TemplateList.jsx:212 #: 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:136 +#: screens/Credential/CredentialList/CredentialList.jsx:141 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:160 +#: screens/Host/HostList/HostList.jsx:155 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryList/InventoryList.jsx:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:139 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:132 +#: screens/Inventory/InventoryList/InventoryList.jsx:180 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 -#: screens/Organization/OrganizationList/OrganizationList.jsx:149 +#: screens/Organization/OrganizationList/OrganizationList.jsx:144 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: screens/Project/ProjectList/ProjectList.jsx:161 -#: screens/Team/TeamList/TeamList.jsx:146 +#: screens/Project/ProjectList/ProjectList.jsx:156 +#: screens/Team/TeamList/TeamList.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 @@ -4988,7 +5006,7 @@ msgid "Modified By (Username)" msgstr "" #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" @@ -5049,50 +5067,50 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:169 #: components/AssociateModal/AssociateModal.jsx:140 #: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:85 -#: components/JobList/JobList.jsx:172 -#: components/JobList/JobList.jsx:221 +#: components/HostForm/HostForm.jsx:84 +#: components/JobList/JobList.jsx:164 +#: components/JobList/JobList.jsx:213 #: components/JobList/JobListItem.jsx:70 #: components/LaunchPrompt/steps/CredentialsStep.jsx:171 #: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: components/LaunchPrompt/steps/InventoryStep.jsx:101 -#: components/Lookup/ApplicationLookup.jsx:78 -#: components/Lookup/ApplicationLookup.jsx:89 -#: components/Lookup/CredentialLookup.jsx:148 -#: components/Lookup/CredentialLookup.jsx:163 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/LaunchPrompt/steps/InventoryStep.jsx:84 +#: components/LaunchPrompt/steps/InventoryStep.jsx:99 +#: components/Lookup/ApplicationLookup.jsx:100 +#: components/Lookup/ApplicationLookup.jsx:111 +#: components/Lookup/CredentialLookup.jsx:186 +#: components/Lookup/CredentialLookup.jsx:201 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:161 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:168 #: components/Lookup/HostFilterLookup.jsx:77 #: components/Lookup/HostFilterLookup.jsx:349 -#: components/Lookup/InstanceGroupsLookup.jsx:83 -#: components/Lookup/InstanceGroupsLookup.jsx:94 -#: components/Lookup/InventoryLookup.jsx:109 -#: components/Lookup/InventoryLookup.jsx:124 -#: components/Lookup/InventoryLookup.jsx:162 -#: components/Lookup/InventoryLookup.jsx:177 -#: components/Lookup/MultiCredentialsLookup.jsx:179 -#: components/Lookup/MultiCredentialsLookup.jsx:194 -#: components/Lookup/OrganizationLookup.jsx:106 -#: components/Lookup/OrganizationLookup.jsx:121 -#: components/Lookup/ProjectLookup.jsx:104 -#: components/Lookup/ProjectLookup.jsx:134 +#: components/Lookup/InstanceGroupsLookup.jsx:92 +#: components/Lookup/InstanceGroupsLookup.jsx:103 +#: components/Lookup/InventoryLookup.jsx:132 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:188 +#: components/Lookup/InventoryLookup.jsx:203 +#: components/Lookup/MultiCredentialsLookup.jsx:189 +#: components/Lookup/MultiCredentialsLookup.jsx:204 +#: components/Lookup/OrganizationLookup.jsx:128 +#: components/Lookup/OrganizationLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:127 +#: components/Lookup/ProjectLookup.jsx:157 #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 #: components/OptionsList/OptionsList.jsx:70 -#: components/PaginatedDataList/PaginatedDataList.jsx:77 -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:69 +#: components/PaginatedDataList/PaginatedDataList.jsx:71 +#: components/PaginatedDataList/PaginatedDataList.jsx:80 +#: components/PaginatedTable/PaginatedTable.jsx:70 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: components/Schedule/ScheduleList/ScheduleList.jsx:169 -#: components/Schedule/ScheduleList/ScheduleList.jsx:188 +#: components/Schedule/ScheduleList/ScheduleList.jsx:161 +#: components/Schedule/ScheduleList/ScheduleList.jsx:181 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 #: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:194 -#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateList.jsx:187 +#: components/TemplateList/TemplateList.jsx:220 #: components/TemplateList/TemplateListItem.jsx:126 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 @@ -5113,42 +5131,42 @@ msgstr "" #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 #: screens/Application/Applications.jsx:78 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:125 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 #: screens/Application/shared/ApplicationForm.jsx:53 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:206 -#: screens/Credential/CredentialList/CredentialList.jsx:123 -#: screens/Credential/CredentialList/CredentialList.jsx:142 +#: screens/Credential/CredentialList/CredentialList.jsx:128 +#: screens/Credential/CredentialList/CredentialList.jsx:147 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: screens/Credential/shared/CredentialForm.jsx:169 +#: screens/Credential/shared/CredentialForm.jsx:165 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:185 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 #: screens/CredentialType/shared/CredentialTypeForm.jsx:24 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:22 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:90 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:91 #: screens/Host/HostDetail/HostDetail.jsx:74 #: screens/Host/HostGroups/HostGroupsList.jsx:158 #: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:147 -#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:163 #: screens/Host/HostList/HostListItem.jsx:28 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 #: screens/InstanceGroup/Instances/InstanceList.jsx:155 #: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 @@ -5156,62 +5174,63 @@ msgstr "" #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:179 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 #: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:175 -#: screens/Inventory/InventoryList/InventoryList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:138 +#: screens/Inventory/InventoryList/InventoryList.jsx:167 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryList/InventoryList.jsx:195 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 #: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryForm.jsx:49 #: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:104 -#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/Inventory/shared/InventorySourceForm.jsx:108 +#: screens/Inventory/shared/SmartInventoryForm.jsx:52 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 #: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:67 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:47 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 #: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/OrganizationList/OrganizationList.jsx:157 +#: screens/Organization/OrganizationList/OrganizationList.jsx:131 +#: screens/Organization/OrganizationList/OrganizationList.jsx:152 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: screens/Organization/shared/OrganizationForm.jsx:59 +#: screens/Organization/shared/OrganizationForm.jsx:57 #: screens/Project/ProjectDetail/ProjectDetail.jsx:131 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectList.jsx:173 +#: screens/Project/ProjectList/ProjectList.jsx:132 +#: screens/Project/ProjectList/ProjectList.jsx:168 #: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:167 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Project/shared/ProjectForm.jsx:173 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 #: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:129 -#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:149 #: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Team/shared/TeamForm.jsx:29 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 @@ -5223,19 +5242,19 @@ msgstr "" #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 +#: screens/Template/shared/JobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:124 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:156 #: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:182 -#: screens/User/UserTeams/UserTeamList.jsx:237 +#: screens/User/UserTeams/UserTeamList.jsx:186 +#: screens/User/UserTeams/UserTeamList.jsx:239 #: screens/User/UserTeams/UserTeamListItem.jsx:18 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:174 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 msgid "Name" msgstr "" @@ -5259,7 +5278,7 @@ msgstr "" msgid "Never expires" msgstr "" -#: components/JobList/JobList.jsx:204 +#: components/JobList/JobList.jsx:196 #: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" @@ -5268,14 +5287,14 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 #: components/LaunchPrompt/LaunchPrompt.jsx:135 #: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:171 +#: components/Schedule/ScheduleList/ScheduleList.jsx:163 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 msgid "Next Run" @@ -5285,12 +5304,12 @@ msgstr "" msgid "No" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:654 +#: screens/Job/JobOutput/JobOutput.jsx:691 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:642 -#: screens/Job/JobOutput/JobOutput.jsx:655 +#: screens/Job/JobOutput/JobOutput.jsx:679 +#: screens/Job/JobOutput/JobOutput.jsx:692 msgid "No Hosts Remaining" msgstr "" @@ -5328,17 +5347,17 @@ msgstr "" msgid "No results found" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:108 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:130 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:173 +#: screens/Template/Survey/SurveyList.jsx:175 msgid "No survey questions found." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:88 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5364,7 +5383,7 @@ msgstr "" #: screens/User/UserDetail/UserDetail.jsx:46 #: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/shared/UserForm.jsx:28 msgid "Normal User" msgstr "" @@ -5389,7 +5408,7 @@ msgid "" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:221 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" @@ -5428,9 +5447,9 @@ msgstr "" msgid "Notification Template not found." msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:189 +#: screens/ActivityStream/ActivityStream.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:193 #: screens/NotificationTemplate/NotificationTemplates.jsx:13 #: screens/NotificationTemplate/NotificationTemplates.jsx:20 #: util/getRelatedResourceDeleteDetails.js:187 @@ -5445,16 +5464,16 @@ msgstr "" msgid "Notification color" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:248 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 msgid "Notification timed out" msgstr "" #: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:148 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Notification type" msgstr "" @@ -5479,7 +5498,7 @@ msgid "November" msgstr "" #: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 #: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" @@ -5507,7 +5526,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:144 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "Off" msgstr "" @@ -5525,7 +5544,7 @@ msgstr "" #: screens/Setting/shared/SharedFields.jsx:143 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 #: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:481 +#: screens/Template/shared/JobTemplateForm.jsx:505 msgid "On" msgstr "" @@ -5559,12 +5578,12 @@ msgstr "" msgid "OpenStack" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:116 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 msgid "Option Details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: screens/Template/shared/JobTemplateForm.jsx:395 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5583,21 +5602,21 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 #: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 +#: screens/Template/shared/JobTemplateForm.jsx:552 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 msgid "Options" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:97 -#: components/Lookup/OrganizationLookup.jsx:82 -#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/ApplicationLookup.jsx:119 #: components/Lookup/OrganizationLookup.jsx:101 +#: components/Lookup/OrganizationLookup.jsx:107 +#: components/Lookup/OrganizationLookup.jsx:123 #: components/PromptDetail/PromptInventorySourceDetail.jsx:62 #: components/PromptDetail/PromptInventorySourceDetail.jsx:72 #: components/PromptDetail/PromptJobTemplateDetail.jsx:88 @@ -5608,14 +5627,14 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:240 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:162 #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:205 +#: screens/Inventory/InventoryList/InventoryList.jsx:198 #: screens/Inventory/InventoryList/InventoryListItem.jsx:96 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 @@ -5625,13 +5644,13 @@ msgstr "" #: screens/Project/ProjectList/ProjectListItem.jsx:236 #: screens/Project/ProjectList/ProjectListItem.jsx:247 #: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamList.jsx:150 #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:183 -#: screens/User/UserTeams/UserTeamList.jsx:242 +#: screens/User/UserTeams/UserTeamList.jsx:187 +#: screens/User/UserTeams/UserTeamList.jsx:244 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" @@ -5640,7 +5659,7 @@ msgstr "" msgid "Organization (Name)" msgstr "" -#: screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:133 msgid "Organization Name" msgstr "" @@ -5650,9 +5669,9 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 #: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Organization/OrganizationList/OrganizationList.jsx:132 -#: screens/Organization/OrganizationList/OrganizationList.jsx:178 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.jsx:126 +#: screens/Organization/OrganizationList/OrganizationList.jsx:173 #: screens/Organization/Organizations.jsx:16 #: screens/Organization/Organizations.jsx:26 #: screens/User/User.jsx:65 @@ -5667,7 +5686,7 @@ msgstr "" msgid "Other prompts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 msgid "Out of compliance" msgstr "" @@ -5700,7 +5719,7 @@ msgid "PUT" msgstr "" #: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 msgid "Pagerduty" msgstr "" @@ -5744,7 +5763,7 @@ msgstr "" #~ "Ansible Tower documentation for example syntax." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:390 +#: screens/Template/shared/JobTemplateForm.jsx:414 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5752,7 +5771,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "" @@ -5762,26 +5781,30 @@ msgstr "" #: screens/Login/Login.jsx:197 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:112 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:223 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:104 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 #: screens/Template/Survey/SurveyQuestionForm.jsx:83 -#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:76 msgid "Password" msgstr "" -#: screens/Dashboard/Dashboard.jsx:191 +#: screens/Dashboard/DashboardGraph.jsx:117 +msgid "Past 24 hours" +msgstr "" + +#: screens/Dashboard/DashboardGraph.jsx:108 msgid "Past month" msgstr "" -#: screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/DashboardGraph.jsx:111 msgid "Past two weeks" msgstr "" -#: screens/Dashboard/Dashboard.jsx:197 +#: screens/Dashboard/DashboardGraph.jsx:114 msgid "Past week" msgstr "" -#: components/JobList/JobList.jsx:205 +#: components/JobList/JobList.jsx:197 #: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" @@ -5810,14 +5833,14 @@ msgstr "" msgid "Play Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:659 +#: screens/Job/JobOutput/JobOutput.jsx:696 msgid "Play Started" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:131 #: screens/Job/JobDetail/JobDetail.jsx:220 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:331 +#: screens/Template/shared/JobTemplateForm.jsx:355 msgid "Playbook" msgstr "" @@ -5825,7 +5848,7 @@ msgstr "" msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:660 +#: screens/Job/JobOutput/JobOutput.jsx:697 msgid "Playbook Complete" msgstr "" @@ -5835,25 +5858,25 @@ msgstr "" msgid "Playbook Directory" msgstr "" -#: components/JobList/JobList.jsx:190 +#: components/JobList/JobList.jsx:182 #: components/JobList/JobListItem.jsx:35 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 #: screens/Job/JobDetail/JobDetail.jsx:80 msgid "Playbook Run" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:651 +#: screens/Job/JobOutput/JobOutput.jsx:688 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:211 +#: components/TemplateList/TemplateList.jsx:204 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" -#: screens/Dashboard/Dashboard.jsx:222 +#: screens/Dashboard/DashboardGraph.jsx:143 msgid "Playbook run" msgstr "" @@ -5861,12 +5884,12 @@ msgstr "" msgid "Plays" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.jsx:177 msgid "Please add survey questions." msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:87 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -5882,7 +5905,7 @@ msgstr "" msgid "Please enter a valid URL" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:19 msgid "Please enter a value." msgstr "" @@ -5894,10 +5917,14 @@ msgstr "" msgid "Please select a day number between 1 and 31." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:748 -msgid "Please select an Inventory or check the Prompt on Launch option." +#: screens/Template/shared/JobTemplateForm.jsx:170 +msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:748 +#~ msgid "Please select an Inventory or check the Prompt on Launch option." +#~ msgstr "" + #: components/Schedule/shared/ScheduleForm.jsx:567 msgid "Please select an end date/time that comes after the start date/time." msgstr "" @@ -5906,7 +5933,7 @@ msgstr "" msgid "Please select an organization before editing the host filter" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 msgid "Pod spec override" msgstr "" @@ -5968,8 +5995,8 @@ msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" #: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:160 #: screens/Template/Survey/SurveyList.jsx:162 +#: screens/Template/Survey/SurveyList.jsx:164 msgid "Preview" msgstr "" @@ -5977,7 +6004,7 @@ msgstr "" msgid "Private key passphrase" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:533 +#: screens/Template/shared/JobTemplateForm.jsx:558 msgid "Privilege Escalation" msgstr "" @@ -5986,9 +6013,9 @@ msgid "Privilege escalation password" msgstr "" #: components/JobList/JobListItem.jsx:196 -#: components/Lookup/ProjectLookup.jsx:85 -#: components/Lookup/ProjectLookup.jsx:90 -#: components/Lookup/ProjectLookup.jsx:143 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/Lookup/ProjectLookup.jsx:166 #: components/PromptDetail/PromptInventorySourceDetail.jsx:87 #: components/PromptDetail/PromptJobTemplateDetail.jsx:116 #: components/PromptDetail/PromptJobTemplateDetail.jsx:124 @@ -6026,16 +6053,16 @@ msgstr "" msgid "Project not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:109 msgid "Project sync failures" msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 #: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:151 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:200 +#: screens/ActivityStream/ActivityStream.jsx:165 +#: screens/Dashboard/Dashboard.jsx:103 +#: screens/Project/ProjectList/ProjectList.jsx:127 +#: screens/Project/ProjectList/ProjectList.jsx:195 #: screens/Project/Projects.jsx:14 #: screens/Project/Projects.jsx:24 #: util/getRelatedResourceDeleteDetails.js:59 @@ -6057,7 +6084,7 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:239 +#: components/CodeEditor/VariablesField.jsx:240 #: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" @@ -6077,8 +6104,8 @@ msgstr "" #~ msgid "Prompts" #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 +#: screens/Template/shared/JobTemplateForm.jsx:444 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6104,7 +6131,7 @@ msgid "" "YAML or JSON." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 msgid "" "Provide your Red Hat or Red Hat Satellite credentials\n" "below and you can choose from a list of your available subscriptions.\n" @@ -6116,7 +6143,7 @@ msgstr "" #~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" @@ -6126,21 +6153,21 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:604 +#: screens/Template/shared/JobTemplateForm.jsx:629 msgid "Provisioning Callback URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:599 +#: screens/Template/shared/JobTemplateForm.jsx:624 msgid "Provisioning Callback details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:538 -#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:563 +#: screens/Template/shared/JobTemplateForm.jsx:566 msgid "Provisioning Callbacks" msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 msgid "Pull" msgstr "" @@ -6160,23 +6187,23 @@ msgstr "" msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:76 +#: screens/User/shared/UserTokenForm.jsx:79 msgid "Read" msgstr "" -#: screens/Dashboard/Dashboard.jsx:239 +#: screens/Dashboard/Dashboard.jsx:131 msgid "Recent Jobs" msgstr "" -#: screens/Dashboard/Dashboard.jsx:237 +#: screens/Dashboard/Dashboard.jsx:129 msgid "Recent Jobs list tab" msgstr "" -#: screens/Dashboard/Dashboard.jsx:250 +#: screens/Dashboard/Dashboard.jsx:142 msgid "Recent Templates" msgstr "" -#: screens/Dashboard/Dashboard.jsx:248 +#: screens/Dashboard/Dashboard.jsx:140 msgid "Recent Templates list tab" msgstr "" @@ -6188,10 +6215,10 @@ msgstr "" msgid "Recipient list" msgstr "" -#: components/Lookup/ProjectLookup.jsx:116 +#: components/Lookup/ProjectLookup.jsx:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Project/ProjectList/ProjectList.jsx:148 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" @@ -6204,7 +6231,7 @@ msgstr "" msgid "Red Hat Virtualization" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:126 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 msgid "Red Hat subscription manifest" msgstr "" @@ -6212,7 +6239,7 @@ msgstr "" msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:105 +#: screens/Application/shared/ApplicationForm.jsx:106 msgid "Redirect URIs" msgstr "" @@ -6232,7 +6259,7 @@ msgstr "" msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:410 +#: screens/Template/shared/JobTemplateForm.jsx:434 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6243,7 +6270,7 @@ msgid "Refresh Token" msgstr "" #: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:87 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" @@ -6251,7 +6278,7 @@ msgstr "" msgid "Regions" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:156 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 msgid "Registry credential" msgstr "" @@ -6267,8 +6294,8 @@ msgstr "" #: components/JobList/JobListItem.jsx:129 #: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:367 -#: screens/Job/JobDetail/JobDetail.jsx:375 +#: screens/Job/JobDetail/JobDetail.jsx:369 +#: screens/Job/JobDetail/JobDetail.jsx:377 #: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 msgid "Relaunch" msgstr "" @@ -6296,10 +6323,10 @@ msgstr "" msgid "Relaunch using host parameters" msgstr "" -#: components/Lookup/ProjectLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Project/ProjectList/ProjectList.jsx:147 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6322,7 +6349,7 @@ msgstr "" msgid "Remove Node" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" @@ -6350,8 +6377,8 @@ msgstr "" msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:76 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 msgid "Request subscription" msgstr "" @@ -6361,7 +6388,7 @@ msgid "Required" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:180 +#: screens/Team/TeamRoles/TeamRolesList.jsx:181 msgid "Resource Name" msgstr "" @@ -6382,7 +6409,7 @@ msgstr "" #~ msgstr "" #: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:157 +#: screens/ActivityStream/ActivityStream.jsx:154 msgid "Resources" msgstr "" @@ -6405,12 +6432,12 @@ msgstr "" #: components/JobCancelButton/JobCancelButton.jsx:79 #: components/JobList/JobListCancelButton.jsx:159 #: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:800 -#: screens/Job/JobOutput/JobOutput.jsx:803 +#: screens/Job/JobOutput/JobOutput.jsx:837 +#: screens/Job/JobOutput/JobOutput.jsx:840 msgid "Return" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:121 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 msgid "Return to subscription management." msgstr "" @@ -6454,7 +6481,7 @@ msgid "Revert to factory default." msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectList.jsx:171 #: screens/Project/ProjectList/ProjectListItem.jsx:156 msgid "Revision" msgstr "" @@ -6464,17 +6491,17 @@ msgid "Revision #" msgstr "" #: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 msgid "Rocket.Chat" msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: screens/Team/TeamRoles/TeamRolesList.jsx:182 -#: screens/User/UserList/UserList.jsx:165 +#: screens/Team/TeamRoles/TeamRolesList.jsx:149 +#: screens/Team/TeamRoles/TeamRolesList.jsx:183 +#: screens/User/UserList/UserList.jsx:167 #: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:145 -#: screens/User/UserRoles/UserRolesList.jsx:156 +#: screens/User/UserRoles/UserRolesList.jsx:147 +#: screens/User/UserRoles/UserRolesList.jsx:158 #: screens/User/UserRoles/UserRolesListItem.jsx:26 msgid "Role" msgstr "" @@ -6495,7 +6522,7 @@ msgstr "" #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:177 +#: screens/Template/shared/JobTemplateForm.jsx:202 msgid "Run" msgstr "" @@ -6526,17 +6553,17 @@ msgstr "" msgid "Run type" msgstr "" -#: components/JobList/JobList.jsx:207 +#: components/JobList/JobList.jsx:199 #: components/TemplateList/TemplateListItem.jsx:105 #: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:652 +#: screens/Job/JobOutput/JobOutput.jsx:689 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 msgid "Running Jobs" msgstr "" @@ -6553,7 +6580,7 @@ msgstr "" msgid "SAML settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:219 +#: screens/Dashboard/DashboardGraph.jsx:140 msgid "SCM update" msgstr "" @@ -6599,9 +6626,9 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:611 #: components/Schedule/shared/ScheduleForm.jsx:617 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: screens/Credential/shared/CredentialForm.jsx:316 -#: screens/Credential/shared/CredentialForm.jsx:321 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 +#: screens/Credential/shared/CredentialForm.jsx:317 +#: screens/Credential/shared/CredentialForm.jsx:322 #: screens/Setting/shared/RevertFormActionGroup.jsx:13 #: screens/Setting/shared/RevertFormActionGroup.jsx:19 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 @@ -6649,9 +6676,9 @@ msgstr "" msgid "Schedule is missing rrule" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:229 +#: components/Schedule/ScheduleList/ScheduleList.jsx:222 #: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/ActivityStream/ActivityStream.jsx:148 #: screens/Inventory/Inventories.jsx:87 #: screens/Inventory/InventorySource/InventorySource.jsx:93 #: screens/ManagementJob/ManagementJob.jsx:107 @@ -6671,7 +6698,7 @@ msgstr "" #: screens/User/UserTokenList/UserTokenList.jsx:126 #: screens/User/UserTokenList/UserTokenListItem.jsx:61 #: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:66 +#: screens/User/shared/UserTokenForm.jsx:69 msgid "Scope" msgstr "" @@ -6692,11 +6719,11 @@ msgid "Scroll previous" msgstr "" #: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:106 +#: components/Lookup/Lookup.jsx:128 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:720 +#: screens/Job/JobOutput/JobOutput.jsx:757 msgid "Search is disabled while the job is running" msgstr "" @@ -6725,18 +6752,18 @@ msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:141 +#: components/Lookup/Lookup.jsx:177 #: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:138 +#: screens/Credential/shared/CredentialForm.jsx:134 msgid "Select Credential Type" msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" @@ -6769,7 +6796,7 @@ msgstr "" msgid "Select Roles to Apply" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:256 +#: screens/User/UserTeams/UserTeamList.jsx:258 msgid "Select Teams" msgstr "" @@ -6785,7 +6812,7 @@ msgstr "" msgid "Select a Resource Type" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:311 +#: screens/Template/shared/JobTemplateForm.jsx:335 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -6795,11 +6822,11 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:144 msgid "Select a credential Type" msgstr "" @@ -6824,7 +6851,7 @@ msgstr "" msgid "Select a playbook" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:299 +#: screens/Template/shared/JobTemplateForm.jsx:323 msgid "Select a project before editing the execution environment." msgstr "" @@ -6833,7 +6860,7 @@ msgid "Select a row to approve" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 msgid "Select a row to delete" msgstr "" @@ -6845,7 +6872,7 @@ msgstr "" msgid "Select a row to disassociate" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 msgid "Select a subscription" msgstr "" @@ -6853,7 +6880,7 @@ msgstr "" msgid "Select a valid date and time for this field" msgstr "" -#: components/HostForm/HostForm.jsx:23 +#: components/HostForm/HostForm.jsx:54 #: components/Schedule/shared/FrequencyDetailSubform.jsx:55 #: components/Schedule/shared/FrequencyDetailSubform.jsx:82 #: components/Schedule/shared/FrequencyDetailSubform.jsx:86 @@ -6862,29 +6889,29 @@ msgstr "" #: components/Schedule/shared/ScheduleForm.jsx:88 #: components/Schedule/shared/ScheduleForm.jsx:92 #: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:31 -#: screens/Inventory/shared/InventoryForm.jsx:24 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:22 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:22 -#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:80 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:50 +#: screens/Inventory/shared/SmartInventoryForm.jsx:72 #: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: screens/Project/shared/ProjectForm.jsx:100 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:18 +#: screens/Project/shared/ProjectForm.jsx:193 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 #: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Team/shared/TeamForm.jsx:49 #: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/JobTemplateForm.jsx:86 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:49 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 +#: screens/User/shared/UserForm.jsx:119 msgid "Select a value for this field" msgstr "" @@ -6892,12 +6919,12 @@ msgstr "" msgid "Select a webhook service." msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:74 +#: components/DataListToolbar/DataListToolbar.jsx:73 #: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:129 +#: screens/ActivityStream/ActivityStream.jsx:126 msgid "Select an activity type" msgstr "" @@ -6905,15 +6932,15 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:161 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:204 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:353 +#: screens/Template/shared/JobTemplateForm.jsx:377 msgid "" "Select credentials for accessing the nodes this job will be ran\n" "against. You can only select one credential of each type. For machine credentials (SSH),\n" @@ -6938,31 +6965,36 @@ msgid "" "directory provide the full path used to locate playbooks." msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/Dashboard.jsx:202 -#: screens/Dashboard/Dashboard.jsx:203 +#: screens/Dashboard/DashboardGraph.jsx:122 +#: screens/Dashboard/DashboardGraph.jsx:123 msgid "Select job type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:179 -#: screens/Dashboard/Dashboard.jsx:180 -#: screens/Dashboard/Dashboard.jsx:181 +#: screens/Dashboard/DashboardGraph.jsx:95 +#: screens/Dashboard/DashboardGraph.jsx:96 +#: screens/Dashboard/DashboardGraph.jsx:97 msgid "Select period" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 msgid "Select roles to apply" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 msgid "Select source path" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:148 +#: screens/Dashboard/DashboardGraph.jsx:149 +msgid "Select status" +msgstr "" + #: components/MultiSelect/TagMultiSelect.jsx:60 msgid "Select tags" msgstr "" @@ -6975,17 +7007,17 @@ msgstr "" msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:86 +#: screens/Organization/shared/OrganizationForm.jsx:84 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:46 +#: screens/User/shared/UserTokenForm.jsx:49 msgid "Select the application that this token will belong to." msgstr "" @@ -6993,7 +7025,7 @@ msgstr "" msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 msgid "Select the default execution environment for this organization to run on." msgstr "" @@ -7005,44 +7037,44 @@ msgstr "" #~ msgid "Select the default execution environment for this project." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:298 +#: screens/Template/shared/JobTemplateForm.jsx:322 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:89 -#: screens/Template/shared/JobTemplateForm.jsx:261 +#: components/Lookup/InventoryLookup.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:286 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" "the dropdown or enter a file within the input." msgstr "" -#: components/HostForm/HostForm.jsx:31 -#: components/HostForm/HostForm.jsx:45 +#: components/HostForm/HostForm.jsx:33 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:334 +#: screens/Template/shared/JobTemplateForm.jsx:358 msgid "Select the playbook to be executed by this job." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:278 +#: screens/Template/shared/JobTemplateForm.jsx:301 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:88 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:129 +#: components/Lookup/Lookup.jsx:165 msgid "Select {0}" msgstr "" @@ -7050,12 +7082,12 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:41 +#: components/CheckboxListItem/CheckboxListItem.jsx:40 #: components/OptionsList/OptionsList.jsx:49 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 #: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 #: screens/Credential/CredentialList/CredentialListItem.jsx:53 #: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 @@ -7068,7 +7100,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:253 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 #: screens/Team/TeamList/TeamListItem.jsx:31 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 msgid "Selected" @@ -7076,8 +7108,8 @@ msgstr "" #: components/LaunchPrompt/steps/CredentialsStep.jsx:145 #: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:152 -#: components/Lookup/MultiCredentialsLookup.jsx:157 +#: components/Lookup/MultiCredentialsLookup.jsx:162 +#: components/Lookup/MultiCredentialsLookup.jsx:167 msgid "Selected Category" msgstr "" @@ -7101,7 +7133,7 @@ msgstr "" msgid "Service account JSON file" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:55 +#: screens/Inventory/shared/InventorySourceForm.jsx:53 #: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" @@ -7114,7 +7146,7 @@ msgstr "" msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 msgid "Set source path to" msgstr "" @@ -7122,7 +7154,7 @@ msgstr "" msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/shared/ApplicationForm.jsx:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" @@ -7156,8 +7188,8 @@ msgstr "" #: routeConfig.jsx:147 #: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:214 -#: screens/ActivityStream/ActivityStream.jsx:216 +#: screens/ActivityStream/ActivityStream.jsx:211 +#: screens/ActivityStream/ActivityStream.jsx:213 #: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" @@ -7171,11 +7203,11 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:472 +#: screens/Template/shared/JobTemplateForm.jsx:496 msgid "Show Changes" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 msgid "Show all groups" msgstr "" @@ -7193,7 +7225,7 @@ msgstr "" msgid "Show less" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 msgid "Show only root groups" msgstr "" @@ -7249,7 +7281,7 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 #: screens/Job/JobDetail/JobDetail.jsx:310 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:511 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Skip Tags" msgstr "" @@ -7262,7 +7294,7 @@ msgstr "" #~ "of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:539 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7284,7 +7316,7 @@ msgid "Skipped" msgstr "" #: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 msgid "Slack" msgstr "" @@ -7331,7 +7363,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:134 +#: screens/Inventory/shared/InventorySourceForm.jsx:138 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7346,7 +7378,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:308 +#: screens/Template/shared/JobTemplateForm.jsx:332 msgid "Source Control Branch" msgstr "" @@ -7356,11 +7388,11 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:83 #: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:57 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 msgid "Source Control Credential" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:210 +#: screens/Project/shared/ProjectForm.jsx:218 msgid "Source Control Credential Type" msgstr "" @@ -7375,18 +7407,18 @@ msgstr "" msgid "Source Control Type" msgstr "" -#: components/Lookup/ProjectLookup.jsx:120 +#: components/Lookup/ProjectLookup.jsx:143 #: components/PromptDetail/PromptProjectDetail.jsx:78 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:157 +#: screens/Project/ProjectList/ProjectList.jsx:152 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" -#: components/JobList/JobList.jsx:188 +#: components/JobList/JobList.jsx:180 #: components/JobList/JobListItem.jsx:33 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 #: screens/Job/JobDetail/JobDetail.jsx:78 @@ -7406,11 +7438,11 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 msgid "Source control branch" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:156 +#: screens/Inventory/shared/InventorySourceForm.jsx:160 msgid "Source details" msgstr "" @@ -7450,7 +7482,7 @@ msgid "" "color code (example: #3af or #789abc)." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:68 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" @@ -7481,7 +7513,7 @@ msgstr "" msgid "Start" msgstr "" -#: components/JobList/JobList.jsx:224 +#: components/JobList/JobList.jsx:216 #: components/JobList/JobListItem.jsx:83 msgid "Start Time" msgstr "" @@ -7509,31 +7541,31 @@ msgid "Start sync source" msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 msgid "Started" msgstr "" -#: components/JobList/JobList.jsx:201 -#: components/JobList/JobList.jsx:222 +#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:214 #: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryList.jsx:196 #: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 #: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectList.jsx:169 #: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 #: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Status" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:628 +#: screens/Job/JobOutput/JobOutput.jsx:665 msgid "Stdout" msgstr "" @@ -7543,7 +7575,7 @@ msgstr "" msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7555,12 +7587,12 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 msgid "Subscription Details" msgstr "" @@ -7568,11 +7600,11 @@ msgstr "" msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:91 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 msgid "Subscription selection modal" msgstr "" @@ -7580,18 +7612,18 @@ msgstr "" msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:135 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:114 +#: components/Lookup/ProjectLookup.jsx:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:146 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -7612,12 +7644,16 @@ msgstr "" msgid "Success message body" msgstr "" -#: components/JobList/JobList.jsx:208 +#: components/JobList/JobList.jsx:200 #: components/Workflow/WorkflowNodeHelp.jsx:86 #: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" +#: screens/Dashboard/DashboardGraph.jsx:163 +msgid "Successful jobs" +msgstr "" + #: screens/Project/ProjectList/ProjectListItem.jsx:167 msgid "Successfully copied to clipboard!" msgstr "" @@ -7631,14 +7667,14 @@ msgstr "" msgid "Sunday" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 #: screens/Template/Template.jsx:168 #: screens/Template/Templates.jsx:47 #: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:135 +#: screens/Template/Survey/SurveyList.jsx:137 msgid "Survey List" msgstr "" @@ -7671,16 +7707,16 @@ msgstr "" msgid "Sync Project" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 #: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 msgid "Sync all" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 msgid "Sync all sources" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 msgid "Sync error" msgstr "" @@ -7693,26 +7729,26 @@ msgstr "" msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:128 +#: screens/Team/TeamRoles/TeamRolesList.jsx:129 #: screens/User/UserDetail/UserDetail.jsx:42 #: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:126 -#: screens/User/shared/UserForm.jsx:41 +#: screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/User/shared/UserForm.jsx:40 msgid "System Administrator" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:44 #: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/shared/UserForm.jsx:34 msgid "System Auditor" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.jsx:702 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:131 -#: screens/User/UserRoles/UserRolesList.jsx:129 +#: screens/Team/TeamRoles/TeamRolesList.jsx:132 +#: screens/User/UserRoles/UserRolesList.jsx:131 msgid "System administrators have unrestricted access to all resources." msgstr "" @@ -7724,7 +7760,7 @@ msgstr "" msgid "TACACS+ settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Dashboard/Dashboard.jsx:117 #: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" @@ -7738,7 +7774,7 @@ msgstr "" #~ "the usage of tags." #~ msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:498 +#: screens/Template/shared/JobTemplateForm.jsx:523 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7780,7 +7816,7 @@ msgstr "" msgid "Task Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:656 +#: screens/Job/JobOutput/JobOutput.jsx:693 msgid "Task Started" msgstr "" @@ -7793,7 +7829,7 @@ msgid "Team" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: screens/Team/TeamRoles/TeamRolesList.jsx:145 msgid "Team Roles" msgstr "" @@ -7804,19 +7840,19 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:208 #: components/AddRole/AddResourceRole.jsx:209 #: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: screens/ActivityStream/ActivityStream.jsx:182 #: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationList.jsx:154 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 #: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 #: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/TeamList/TeamList.jsx:119 +#: screens/Team/TeamList/TeamList.jsx:174 #: screens/Team/Teams.jsx:14 #: screens/Team/Teams.jsx:24 #: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:177 -#: screens/User/UserTeams/UserTeamList.jsx:251 +#: screens/User/UserTeams/UserTeamList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:253 #: screens/User/Users.jsx:32 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Teams" @@ -7831,10 +7867,10 @@ msgstr "" msgid "Template type" msgstr "" -#: components/TemplateList/TemplateList.jsx:189 -#: components/TemplateList/TemplateList.jsx:246 +#: components/TemplateList/TemplateList.jsx:182 +#: components/TemplateList/TemplateList.jsx:239 #: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:162 +#: screens/ActivityStream/ActivityStream.jsx:159 #: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 #: screens/Template/Templates.jsx:16 @@ -7843,9 +7879,9 @@ msgstr "" msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:329 -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 +#: screens/Credential/shared/CredentialForm.jsx:330 +#: screens/Credential/shared/CredentialForm.jsx:336 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 #: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:250 msgid "Test" msgstr "" @@ -7883,15 +7919,19 @@ msgstr "" msgid "Textarea" msgstr "" +#: components/Lookup/Lookup.jsx:60 +msgid "That value was not found. Please enter or select a valid value." +msgstr "" + #: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:86 +#: screens/Application/shared/ApplicationForm.jsx:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" @@ -7902,7 +7942,7 @@ msgid "" "from 1 to 120 seconds." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:466 +#: screens/Template/shared/JobTemplateForm.jsx:490 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -7916,11 +7956,11 @@ msgid "" "Grafana URL." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:96 +#: screens/Organization/shared/OrganizationForm.jsx:94 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:196 +#: screens/Project/shared/ProjectForm.jsx:202 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" @@ -7931,18 +7971,18 @@ msgid "" "the branch needs to be \"pull/62/head\"." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:105 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:75 +#: screens/Organization/shared/OrganizationForm.jsx:73 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:404 +#: screens/Template/shared/JobTemplateForm.jsx:428 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7980,7 +8020,7 @@ msgid "" "etc.). Variable names with spaces are not allowed." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:151 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 msgid "The tower instance group cannot be deleted." msgstr "" @@ -8046,17 +8086,21 @@ msgstr "" msgid "Third" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:153 +msgid "This Project needs to be updated" +msgstr "" + #: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:120 +#: screens/Template/Survey/SurveyList.jsx:122 msgid "This action will delete the following:" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:222 +#: screens/User/UserTeams/UserTeamList.jsx:224 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:225 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: screens/Team/TeamRoles/TeamRolesList.jsx:237 +#: screens/User/UserRoles/UserRolesList.jsx:235 msgid "This action will disassociate the following role from {0}:" msgstr "" @@ -8064,7 +8108,7 @@ msgstr "" msgid "This action will disassociate the following:" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" @@ -8072,7 +8116,7 @@ msgstr "" msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:121 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" @@ -8090,7 +8134,7 @@ msgstr "" #~ "Insights Analytics to subscribers." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -8104,7 +8148,7 @@ msgstr "" #~ "Red Hat Insights for Ansible." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -8134,7 +8178,7 @@ msgstr "" msgid "This field must be a number" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" @@ -8151,7 +8195,7 @@ msgstr "" msgid "This field must be an integer" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:103 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 msgid "This field must be at least {0} characters" msgstr "" @@ -8163,9 +8207,10 @@ msgstr "" msgid "This field must be greater than 0" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:115 -#: screens/User/shared/UserForm.jsx:84 -#: screens/User/shared/UserForm.jsx:95 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:114 +#: screens/Template/shared/JobTemplateForm.jsx:150 +#: screens/User/shared/UserForm.jsx:80 +#: screens/User/shared/UserForm.jsx:91 #: util/validators.jsx:4 #: util/validators.jsx:49 msgid "This field must not be blank" @@ -8175,7 +8220,7 @@ msgstr "" msgid "This field must not contain spaces" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:106 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 msgid "This field must not exceed {0} characters" msgstr "" @@ -8195,11 +8240,11 @@ msgstr "" msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:135 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:281 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" @@ -8211,7 +8256,7 @@ msgstr "" msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8228,14 +8273,14 @@ msgid "This project is currently on sync and cannot be clicked until sync proces msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:156 -msgid "This project needs to be updated" -msgstr "" +#~ msgid "This project needs to be updated" +#~ msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:130 +#: components/Schedule/ScheduleList/ScheduleList.jsx:122 msgid "This schedule is missing an Inventory" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:155 +#: components/Schedule/ScheduleList/ScheduleList.jsx:147 msgid "This schedule is missing required survey values" msgstr "" @@ -8244,7 +8289,7 @@ msgstr "" msgid "This step contains errors" msgstr "" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.jsx:146 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" @@ -8258,7 +8303,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8271,14 +8316,14 @@ msgstr "" msgid "Thursday" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:243 -#: screens/ActivityStream/ActivityStream.jsx:255 +#: screens/ActivityStream/ActivityStream.jsx:240 +#: screens/ActivityStream/ActivityStream.jsx:252 #: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 #: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8306,7 +8351,7 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.jsx:489 msgid "Timeout" msgstr "" @@ -8405,11 +8450,11 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:129 +#: components/PaginatedTable/PaginatedTable.jsx:130 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 msgid "Total Jobs" msgstr "" @@ -8423,7 +8468,7 @@ msgstr "" msgid "Total jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:86 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 msgid "Track submodules" msgstr "" @@ -8432,8 +8477,8 @@ msgstr "" msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:158 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 msgid "Trial" msgstr "" @@ -8443,7 +8488,7 @@ msgstr "" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:197 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:296 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:84 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 msgid "True" msgstr "" @@ -8457,59 +8502,59 @@ msgid "Tuesday" msgstr "" #: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 msgid "Twilio" msgstr "" -#: components/JobList/JobList.jsx:223 +#: components/JobList/JobList.jsx:215 #: components/JobList/JobListItem.jsx:82 -#: components/Lookup/ProjectLookup.jsx:109 +#: components/Lookup/ProjectLookup.jsx:132 #: components/NotificationList/NotificationList.jsx:219 #: components/NotificationList/NotificationListItem.jsx:30 #: components/PromptDetail/PromptDetail.jsx:112 -#: components/Schedule/ScheduleList/ScheduleList.jsx:170 +#: components/Schedule/ScheduleList/ScheduleList.jsx:162 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:203 -#: components/TemplateList/TemplateList.jsx:228 +#: components/TemplateList/TemplateList.jsx:196 +#: components/TemplateList/TemplateList.jsx:221 #: components/TemplateList/TemplateListItem.jsx:152 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 #: components/Workflow/WorkflowNodeHelp.jsx:136 #: components/Workflow/WorkflowNodeHelp.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialList.jsx:148 #: screens/Credential/CredentialList/CredentialListItem.jsx:60 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryList.jsx:197 #: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectList.jsx:141 +#: screens/Project/ProjectList/ProjectList.jsx:170 #: screens/Project/ProjectList/ProjectListItem.jsx:153 #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRolesList.jsx:182 #: screens/Template/Survey/SurveyListItem.jsx:117 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 -#: screens/User/UserRoles/UserRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:157 #: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Type" msgstr "" #: screens/Credential/shared/TypeInputsSubForm.jsx:25 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:242 +#: screens/Project/shared/ProjectForm.jsx:250 msgid "Type Details" msgstr "" @@ -8528,7 +8573,7 @@ msgstr "" msgid "Undo" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 msgid "Unlimited" msgstr "" @@ -8555,7 +8600,7 @@ msgstr "" #: components/PromptDetail/PromptProjectDetail.jsx:46 #: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:97 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 msgid "Update Revision on Launch" msgstr "" @@ -8593,11 +8638,11 @@ msgstr "" msgid "Updating" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:127 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:106 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 msgid "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal." msgstr "" @@ -8653,21 +8698,21 @@ msgid "User Interface settings" msgstr "" #: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:141 +#: screens/User/UserRoles/UserRolesList.jsx:143 msgid "User Roles" msgstr "" #: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:132 +#: screens/User/shared/UserForm.jsx:129 msgid "User Type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:70 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 msgid "User and Insights analytics" msgstr "" @@ -8697,27 +8742,27 @@ msgstr "" #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 #: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:103 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:215 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 #: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:118 -#: screens/User/UserList/UserList.jsx:162 +#: screens/User/UserList/UserList.jsx:122 +#: screens/User/UserList/UserList.jsx:164 #: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:67 +#: screens/User/shared/UserForm.jsx:63 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:97 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 msgid "Username / password" msgstr "" #: components/AddRole/AddResourceRole.jsx:198 #: components/AddRole/AddResourceRole.jsx:199 #: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:182 +#: screens/ActivityStream/ActivityStream.jsx:179 #: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:113 -#: screens/User/UserList/UserList.jsx:155 +#: screens/User/UserList/UserList.jsx:117 +#: screens/User/UserList/UserList.jsx:157 #: screens/User/Users.jsx:15 #: screens/User/Users.jsx:26 msgid "Users" @@ -8727,30 +8772,30 @@ msgstr "" msgid "VMware vCenter" msgstr "" -#: components/HostForm/HostForm.jsx:100 +#: components/HostForm/HostForm.jsx:99 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 #: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:103 +#: screens/Host/HostDetail/HostDetail.jsx:104 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:40 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:89 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:134 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:54 -#: screens/Inventory/shared/InventoryForm.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:135 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:55 +#: screens/Inventory/shared/InventoryForm.jsx:96 #: screens/Inventory/shared/InventoryGroupForm.jsx:49 #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 -#: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:221 +#: screens/Template/shared/JobTemplateForm.jsx:412 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Variables" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:657 +#: screens/Job/JobOutput/JobOutput.jsx:694 msgid "Variables Prompted" msgstr "" @@ -8762,7 +8807,7 @@ msgstr "" msgid "Vault password | {credId}" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:662 +#: screens/Job/JobOutput/JobOutput.jsx:699 msgid "Verbose" msgstr "" @@ -8776,11 +8821,11 @@ msgstr "" #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 #: screens/Job/JobDetail/JobDetail.jsx:222 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:438 +#: screens/Template/shared/JobTemplateForm.jsx:462 msgid "Verbosity" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 msgid "Version" msgstr "" @@ -9032,7 +9077,7 @@ msgid "View smart inventory host details" msgstr "" #: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:143 +#: screens/ActivityStream/ActivityStream.jsx:140 msgid "Views" msgstr "" @@ -9046,13 +9091,13 @@ msgstr "" msgid "WARNING:" msgstr "" -#: components/JobList/JobList.jsx:206 +#: components/JobList/JobList.jsx:198 #: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" #: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:664 +#: screens/Job/JobOutput/JobOutput.jsx:701 msgid "Warning" msgstr "" @@ -9060,16 +9105,16 @@ msgstr "" msgid "Warning: Unsaved Changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:111 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:131 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" #: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 msgid "Webhook" msgstr "" @@ -9109,8 +9154,8 @@ msgstr "" msgid "Webhook URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 +#: screens/Template/shared/JobTemplateForm.jsx:655 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 msgid "Webhook details" msgstr "" @@ -9151,7 +9196,7 @@ msgstr "" #~ msgid "Welcome to Ansible {brandName}! Please Sign In." #~ msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -9190,15 +9235,15 @@ msgid "Workflow Approval not found." msgstr "" #: routeConfig.jsx:52 -#: screens/ActivityStream/ActivityStream.jsx:154 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209 +#: screens/ActivityStream/ActivityStream.jsx:151 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:211 #: screens/WorkflowApproval/WorkflowApprovals.jsx:12 #: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Workflow Approvals" msgstr "" -#: components/JobList/JobList.jsx:193 +#: components/JobList/JobList.jsx:185 #: components/JobList/JobListItem.jsx:38 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 #: screens/Job/JobDetail/JobDetail.jsx:83 @@ -9230,7 +9275,7 @@ msgstr "" msgid "Workflow Link" msgstr "" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.jsx:200 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" @@ -9292,7 +9337,7 @@ msgstr "" msgid "Workflow timed out message body" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:77 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Write" msgstr "" @@ -9316,11 +9361,11 @@ msgstr "" msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: components/Lookup/MultiCredentialsLookup.jsx:146 +#: components/Lookup/MultiCredentialsLookup.jsx:156 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:93 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" @@ -9328,7 +9373,7 @@ msgstr "" msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:143 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" @@ -9366,12 +9411,12 @@ msgstr "" msgid "Zoom Out" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:728 +#: screens/Template/shared/JobTemplateForm.jsx:753 #: screens/Template/shared/WebhookSubForm.jsx:152 msgid "a new webhook key will be generated on save." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:725 +#: screens/Template/shared/JobTemplateForm.jsx:750 #: screens/Template/shared/WebhookSubForm.jsx:142 msgid "a new webhook url will be generated on save." msgstr "" @@ -9397,7 +9442,7 @@ msgid "brand logo" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:110 +#: screens/Template/Survey/SurveyList.jsx:112 msgid "cancel delete" msgstr "" @@ -9410,12 +9455,12 @@ msgid "command" msgstr "" #: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:101 +#: screens/Template/Survey/SurveyList.jsx:103 msgid "confirm delete" msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 msgid "confirm disassociate" msgstr "" @@ -9445,16 +9490,16 @@ msgstr "" msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 #: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:109 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/Host/HostDetail/HostDetail.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:95 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:147 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 #: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:169 #: screens/User/UserDetail/UserDetail.jsx:84 msgid "edit" msgstr "" @@ -9615,8 +9660,8 @@ msgstr "" msgid "social login" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 +#: screens/Template/shared/JobTemplateForm.jsx:344 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 msgid "source control branch" msgstr "" @@ -9660,11 +9705,11 @@ msgstr "" msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:232 +#: screens/Inventory/InventoryList/InventoryList.jsx:225 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:249 +#: components/JobList/JobList.jsx:242 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 "" @@ -9672,31 +9717,31 @@ msgstr "" #~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}" #~ msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}" msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:178 +#: screens/Credential/CredentialList/CredentialList.jsx:181 msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:188 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:226 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.jsx:218 msgid "{0, plural, one {This inventory is currently being used by some templates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}" msgstr "" @@ -9704,15 +9749,15 @@ msgstr "" #~ msgid "{0, plural, 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?}}" #~ msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:181 +#: screens/Organization/OrganizationList/OrganizationList.jsx:176 msgid "{0, 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?}}" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:203 +#: screens/Project/ProjectList/ProjectList.jsx:198 msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}" msgstr "" -#: components/TemplateList/TemplateList.jsx:249 +#: components/TemplateList/TemplateList.jsx:242 msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}" msgstr "" @@ -9800,8 +9845,12 @@ msgstr "" msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" -#: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:76 +#: components/DetailList/NumberSinceDetail.jsx:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx index 90239d11e1..3508f32138 100644 --- a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx +++ b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx @@ -10,7 +10,11 @@ import { } from '@patternfly/react-icons'; import RoutedTabs from '../../../../components/RoutedTabs'; import { CardBody, CardActionsRow } from '../../../../components/Card'; -import { DetailList, Detail } from '../../../../components/DetailList'; +import { + DetailList, + Detail, + NumberSinceDetail, +} from '../../../../components/DetailList'; import { useConfig } from '../../../../contexts/Config'; import { formatDateString, @@ -126,10 +130,21 @@ function SubscriptionDetail() { /> )} + ', () => { assertDetail('Trial', 'False'); assertDetail('Expires on', '2/27/2021, 4:59:59 AM'); assertDetail('Days remaining', '3'); - assertDetail('Hosts used', '1'); + assertDetail('Hosts imported', '1'); assertDetail('Hosts remaining', '1000'); + assertDetail('Hosts automated', '12 since 3/2/2021, 7:43:48 PM'); expect(wrapper.find('Button[aria-label="edit"]').length).toBe(1); });